plotly-dash custom component. Adds Plotly.extendTraces() support to dash_core_components.Graph()
Project description
dash-extendable-graph
dash-extendable-graph is a Dash component library. This library contains a single component: ExtendableGraph
. The component is a fork of the Graph() component of dash-core-components (v 1.3.1). However, the extendData
for this component has been modified to follow an api that matches the format of figure['data']
(as opposed to the api defined Graph.extendData
and Plotly.extendTraces()
).
Note: As of version 1.1.0, dash-extendable-graph
includes PlotlyJS as an internal dependency. Previously, the component assumed it would be used in conjunction with dash-core-components
, but as of version 1.4.0, PlotlyJS is only available asynchronously when a Graph component exists on the page.
Installation
Get started with:
- Install Dash and dependencies: https://dash.plot.ly/installation
$ pip install -r requirements.txt
- Install dash-extendable-graph
$ pip install dash-extendable-graph
- Run
python usage.py
- Visit http://localhost:8050 in your web browser
Usage
General examples may be found in usage.py
extendData properties
updateData
[list]: a list of dictionaries, each containing representing trace data (e.gdict(x=[1], y=[1])
)traceIndices
[list, optional]: identify the traces that should be extended. If the specified trace index does not exist, the corresponding trace shall be appended to the figure.maxPoints
[number, optional]: define the maximum number of points to plot in the figure (per trace).
Based on the Plotly.extendTraces()
api. However, the updateData
key has been modified to better match the contents of Plotly.plot()
(e.g. Graph.figure
). Aside from following dash-familiar styling, this component allows the user to extend traces of different types in a single call (Plotly.extendTraces()
takes a map of key:val and assumes all traces will share the same data keys).
Code
Extend a trace once per second, limited to 100 maximum points.
import dash_extendable_graph as deg
import dash
from dash.dependencies import Input, Output, State
import dash_html_components as html
import dash_core_components as dcc
import random
app = dash.Dash(__name__)
app.scripts.config.serve_locally = True
app.css.config.serve_locally = True
app.layout = html.Div([
deg.ExtendableGraph(
id='extendablegraph_example',
figure=dict(
data=[{'x': [0],
'y': [0],
'mode':'lines+markers'
}],
)
),
dcc.Interval(
id='interval_extendablegraph_update',
interval=1000,
n_intervals=0,
max_intervals=-1),
html.Div(id='output')
])
@app.callback(Output('extendablegraph_example', 'extendData'),
[Input('interval_extendablegraph_update', 'n_intervals')],
[State('extendablegraph_example', 'figure')])
def update_extendData(n_intervals, existing):
x_new = existing['data'][0]['x'][-1] + 1
y_new = random.random()
return [dict(x=[x_new], y=[y_new])], [0], 100
if __name__ == '__main__':
app.run_server(debug=True)
Contributing
See CONTRIBUTING.md
Local Installation
- Dependencies
$ npm install
$ virtualenv venv
$ . venv/bin/activate
$ pip install -r requirements.txt
$ pip install -r tests/requirements.txt
- Build
$ npm run build
- Check out the component via component-playground
$ npm run start
The demo app is in `src/demo`
- Check out the sample Dash application using the component
$ python setup.py install
$ python usage.py
Tests
Integration tests for the component can be found in tests/
$pytest --headless tests
(note: the --headless
param runs tests without the GUI)
Create a production build and publish:
$ rm -rf dist
$ npm run build
$ python setup.py sdist bdist_wheel
$ twine upload dist/*
$ npm publish
Test your tarball by copying it into a new environment and installing it locally:
$ pip install dash_extendable_graph-X.X.X.tar.gz
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for dash_extendable_graph-1.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81fd84758ee6922afc5359c4d054cdabd08af993e257de05a1d2079aea2804ac |
|
MD5 | 0cfd516637c23b87a53cd131368b016f |
|
BLAKE2b-256 | cbcb955359a72197c146e4f2bc9a5703e19bc6fc93292cace6161a8951b1e48d |
Hashes for dash_extendable_graph-1.1.0-py3.7.egg
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1707ef7896a0c5bd26366c1a955128ce33bf5380e237edf885900d0ab98db14a |
|
MD5 | cafafe58b5da50bdc7a6417d0d2b0132 |
|
BLAKE2b-256 | cc81c6f76a37c434537765fef35e72800dcca715c202a9469e6c9473effd55d4 |
Hashes for dash_extendable_graph-1.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 609d2602de536a17972608ae4dab545ebfed03aca5deaa2639ce10e676c03d3b |
|
MD5 | 9a1b63769a3ea9bea93c34f9dca39153 |
|
BLAKE2b-256 | cebafe79f1adf66badf1ea2546040fe48adb7fd17eea6673305a9b50a038756e |