Hi everyone, I am a beginner.
After following the dash tutorial, I find that Dash data_table doesn’t support the MS Excel-like mini chart in data_table. It seems that data_table property ‘data’ can not be a dcc.Graph. Is that true? THX.
That is true. Your best bet for now would be:
- Use
html.Table
which can have any components aschildren
- Display your graphs above the dash_table.DataTable columns
- Use sparklines Sparklines as Fonts! Embedding Minimal Sparklines in Tables & Components
- Check out the conditional formatting options for heatmaps embedded in cells: Conditional Formatting | Dash for Python Documentation | Plotly
got it, thanks a lot.