Skip to content

Commit 7bbd2c4

Browse files
Merge pull request #2309 from plotly/what_about_dash
what about dash?
2 parents b644fb5 + 980b8d6 commit 7bbd2c4

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

doc/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ $(IPYNB_FILES): $(IPYNB_DIR)/.mapbox_token
3030
$(IPYNB_DIR)/%.ipynb: $(MD_DIR)/%.md
3131
@mkdir -p $(IPYNB_DIR)
3232
@echo "[jupytext] $<"
33+
@cat what_about_dash.md >> $<
3334
@jupytext $< --to notebook --quiet --output $@
3435

3536
$(HTML_DIR)/2019-07-03-%.html: $(IPYNB_DIR)/%.ipynb

doc/what_about_dash.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
<!-- #region -->
3+
### What About Dash?
4+
5+
[Dash](https://dash.plot.ly/) is an open-source framework for building analytical applications, with no Javascript required, and it is tightly integrated with the Plotly graphing library.
6+
7+
Learn about how to install Dash at https://dash.plot.ly/installation.
8+
9+
Everywhere in this page that you see `fig.show()`, you can display the same figure in a Dash application by passing it to the `figure` argument of the [`Graph` component](https://dash.plot.ly/dash-core-components/graph) from the built-in `dash_core_components` package like this:
10+
11+
```python
12+
import plotly.graph_objects as go # or plotly.express as px
13+
fig = go.Figure() # or any Plotly Express function e.g. px.bar(...)
14+
# fig.add_trace( ... )
15+
# fig.update_layout( ... )
16+
17+
import dash
18+
import dash_core_components as dcc
19+
import dash_html_components as html
20+
21+
app = dash.Dash()
22+
app.layout = html.Div([
23+
dcc.Graph(figure=fig)
24+
])
25+
26+
app.run_server(debug=True, use_reloader=False) # Turn off reloader if inside Jupyter
27+
```
28+
<!-- #endregion -->

0 commit comments

Comments
 (0)