Edit on Nov 2, 2018
Hey everyone, @chriddyp here.
This issue was created in June, 2017 and we’ve come a long way since then.
In particular, a few companies stepped up and sponsored the development of a first-class Dash table component!.We now recommend that you use our brand new
DataTable
component.
Documentation: https://dash.plot.ly/datatable
GitHub: https://github.com/plotly/dash-table
Community Thread: Introducing Dash DataTable 🎉
The code snippet below creates a line graph that reacts on the choice in a dropdown. Is there a way to display a table instead?
@app.callback(Output(‘my-graph’, ‘figure’), [Input(‘my-dropdown’, ‘value’)])
def update_graph(selected_dropdown_value):
df1 = df[(df[‘Förvaltningsnamn’] == selected_dropdown_value) & (df[‘År’] < now.year)]
df2 = df[(df[‘Förvaltningsnamn’] == comparison) & (df[‘År’] < now.year)]
trace = go.Scatter(x=df1.År, y=df1['Utfall%'] * 100, name=selected_dropdown_value)
trace1 = go.Scatter(x=df2.År, y=df2['Utfall%'] * 100, name=comparison)
x_axis = dict(nticks=len(df1.År),
title='År'
)
y_axis = dict(title='Utfall/Budget (%)')
layout = go.Layout(xaxis=x_axis, yaxis=y_axis, showlegend=True, legend=dict(orientation="h"))
data = [trace, trace1]
fig = go.Figure(data=data, layout=layout)
return fig