Skip to main content

Dash Vega Components

Project description

Dash Vega Components

With the Vega component, you can display Vega-Altair charts in your Plotly Dash application. All features work as well with Vega-Lite and Vega specifications but the remainder of this README will focus on Altair as it is more common.

You can either go through the examples below or head over to the Plotly Dash documentation to learn more.

pip install dash-vega-components

Altair example

For the example below, you'll also need:

pip install altair vega_datasets
import altair as alt
from dash import Dash, Input, Output, callback, dcc, html
from vega_datasets import data

import dash_vega_components as dvc

# Passing a stylesheet is not required
app = Dash(
    __name__, external_stylesheets=["https://codepen.io/chriddyp/pen/bWLwgP.css"]
)

app.layout = html.Div(
    [
        html.H1("Altair Chart"),
        dcc.Dropdown(["All", "USA", "Europe", "Japan"], "All", id="origin-dropdown"),
        # Optionally, you can pass options to the Vega component.
        # See https://github.com/vega/vega-embed#options for more details.
        dvc.Vega(id="altair-chart", opt={"renderer": "svg", "actions": False}),
    ]
)


@callback(Output("altair-chart", "spec"), Input("origin-dropdown", "value"))
def display_altair_chart(origin):
    source = data.cars()

    if origin != "All":
        source = source[source["Origin"] == origin]

    chart = (
        alt.Chart(source)
        .mark_circle(size=60)
        .encode(
            x="Horsepower",
            y="Miles_per_Gallon",
            color=alt.Color("Origin").scale(domain=["Europe", "Japan", "USA"]),
            tooltip=["Name", "Origin", "Horsepower", "Miles_per_Gallon"],
        )
        .interactive()
    )
    return chart.to_dict()


if __name__ == "__main__":
    app.run(debug=True)

Example

You can also pass a Vega or Vega-Lite specification as a dictionary.

Callbacks

Parameters are the basic building blocks to make an Altair chart interactive. They can either be simple variables or more complex selections that map user input (e.g., mouse clicks and drags) to data queries. In Vega, these are called Signals and the two concepts of Signals and Parameters are closely linked. As an Altair user, you don't have to know the details and you can think of them as synonyms.

You can trigger a Dash callback based on changes in any parameter which is defined in an Altair chart. To do this, you'll need to

  • specify a name when defining the parameter, for example alt.param(name="my_param") or alt.selection_point(name="my_param")
  • add the parameter name to the signalsToObserve property of the Vega component: dvc.Vega(id="chart1", signalsToObserve=["my_param]). If you want to observe all signals, you can also pass signalsToObserve=["all"]
  • use Input("chart1", "signalData") in your callback to access the value of "my_param" and react to changes

For more examples, see example_app.py which shows how to filter a pandas dataframe based on a selection in a chart and display it in a Dash data table (the same would work with the Dash AG Grid component), or head over to https://github.com/altair-viz/dash-vega-components/issues/5.

Some ideas of what you could do with this:

  • Filter a Dash data table based on the selected points in a scatter plot (see example_app.py)
  • Based on a clickable bar chart, update other charts in your application
  • If you have geographic data, show an overview map of aggregated regional data. Use this map as a navigation element in a dash multi-page app so that if a user clicks on e.g. the US, they get to the US specific subpage
  • ...

Further information

For more infos on the properites of the Vega component, see its docstring in Vega.py.

To learn more about making Altair charts interactive, see Interactive Charts - Vega-Altair docs.

If you want your chart to resize responsively, set container="width" in your Altair chart.

Development

Requires npm

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -r requirements-dev.txt

npm install
npm run build
# Test package with
python example_app.py

Visit http://localhost:8050 in your web browser

To cut a new release, see RELEASING.md

This package is based on the dash-component-boilerplate template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dash_vega_components-0.11.0.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

dash_vega_components-0.11.0-py3-none-any.whl (1.4 MB view details)

Uploaded Python 3

File details

Details for the file dash_vega_components-0.11.0.tar.gz.

File metadata

  • Download URL: dash_vega_components-0.11.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.6

File hashes

Hashes for dash_vega_components-0.11.0.tar.gz
Algorithm Hash digest
SHA256 13657bb4a93b1679876c8c58ef39914179545b1323b3c94340decf7f19ab7f24
MD5 3fc2fab1ffa53103e3a713212a0b3cc8
BLAKE2b-256 8fa3fd9756872a6fa46d0a8124c46a3f676557f6462233d6d8d994067ff116ff

See more details on using hashes here.

File details

Details for the file dash_vega_components-0.11.0-py3-none-any.whl.

File metadata

File hashes

Hashes for dash_vega_components-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6ab17cec0918eb3c7c8eea6649301d2fc147ca18fa7f97323b9bad9627749387
MD5 b45a7ffefa44342bfb32a150d50e4e80
BLAKE2b-256 d6c7bf205de1982c0e61698c9750a1444c701bb71ac0a661c85636f75c1d26e4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page