dash-alternative-viz icon indicating copy to clipboard operation
dash-alternative-viz copied to clipboard

Dash components & demos to create Altair, Matplotlib, Highcharts , and Bokeh graphs within Dash apps.

Results 24 dash-alternative-viz issues
Sort by recently updated
recently updated
newest added

I run the usage.py file but the bokeh graphics is missing from the output. There is also an import error in the downloaded script it tries to import plotly_express instead...

pip3 install dash-alternative-viz ERROR: Could not find a version that satisfies the requirement dash-alternative-viz (from versions: none) ERROR: No matching distribution found for dash-alternative-viz environment: Python 3.8.6

Bumps [highcharts](https://github.com/highcharts/highcharts-dist) from 8.1.1 to 9.0.0. Commits 5db01d7 v9.0.0 e4c4afe v8.2.2 8ff5bca Fixed mixins case. 7b6ad2b Revert "Fixed mixins case." a50b16e Fixed mixins case. a640652 Prepared fix of mixins case....

dependencies

Bumps [vega](https://github.com/vega/vega) from 5.4.0 to 5.17.3. Release notes Sourced from vega's releases. v5.17.3 Changes from v5.17.2: vega-expression Remove unsafe replace function. (#3027) vega-functions Add replace function with input type check....

dependencies

Bumps [npm-user-validate](https://github.com/npm/npm-user-validate) from 1.0.0 to 1.0.1. Commits 5c5471c 1.0.1 c8a87da fix: update email validation cd75393 Publish only the minimum of files See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=npm-user-validate&package-manager=npm_and_yarn&previous-version=1.0.0&new-version=1.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)...

dependencies

I want to create a bubble chart using this library. This is the code ``` import dash import dash_alternative_viz as dav import pandas as pd import plotly.express as px from...

Bumps [d3-color](https://github.com/d3/d3-color) to 3.1.0 and updates ancestor dependency [vega](https://github.com/vega/vega). These dependencies need to be updated together. Updates `d3-color` from 1.2.3 to 3.1.0 Release notes Sourced from d3-color's releases. v3.1.0 Add...

dependencies

import plotly.graph_objects as go import numpy as np import plotly.express as px df = px.data.gapminder().query("country=='Canada'") fig = go.Figure() fig.add_trace( go.Scatter( x=df["year"], y=df["pop"], name="line1", hoverinfo="text+name", line_shape="spline", mode="markers+lines", line=dict( color="Blue", width=4, ),...

The options property doesn't trigger the callback when the user interacts with HighCharts. Is it because the [HighChart.react.js](https://github.com/plotly/dash-alternative-viz/blob/master/src/lib/components/HighChart.react.js) only has a render( ) event and no onChange() event? This onchange()...

For anyone landing on this repository and looking for a way to show [Vega-Altair](https://altair-viz.github.io/) charts in your Dash application, see [dash-vega-components](https://github.com/binste/dash-vega-components).