I’m having challenges getting a table to display in Dash using plotly.graph_objs. It works outside of Dash.
When I run this code and go to the browser I get “Error loading dependencies”.
import dash
import dash_html_components as html
import dash_core_components as dcc
import plotly.graph_objs as go
app = dash.Dash(__name__)
server=app.server
#server.secret_key = os.environ.get('secret_key', 'secret')
trace1=[go.Table(type = 'table',
columnorder = [1,2,3],
columnwidth=[10,30,5],
header=dict(values=['A Scores', 'B Scores', 'C Scores']),
cells=dict(values=[[100, 90, 80, 90],
[95, 85, 75, 95],
[95, 85, 75, 95]])
)]
app.layout = html.Div([
#dcc.Graph( id = "heatmap", figure = go.Figure( data = [go.Heatmap(z=[[1, 20, 30], [20, 1, 60], [30, 60, 1]])] ) ),
dcc.Graph(id='visitors1',figure = go.Figure(data = trace1))
])
if __name__ == '__main__':
app.run_server(debug=True)
I’m aware of the figure_factory approach to displaying a table, but I don’t think there is anyway of adjusting column width with that approach.
If I uncomment the heatmap graph and comment the table graph, that does display ok. So it seems to be something with the table that it doesn’t like.
Any advice?