You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
I'm trying to embed a dash-common-component graph inside the cell of a dash-table. I have tried to generate the graph data and then adding it to the dash-table row data via:
thisrow["Results"] = dcc.Graph(id='id-1', figure=pass_percent_bar, config={'displayModeBar': False})
but this doesn't seem to work. Is there a way to embed a graph into the cell of a dash-table?
Thanks