Celia
Celia
Hi all! As the fix hasn't been included in Dash yet, here's an updated workaround using components as options: ``` from dash import Dash, dcc, html, Input, Output import dash_mantine_components...
The main issue is that, by default, `bingroup` gets set to axis `x` for every facet, like: ``` for t in fig.data : print(f"for trace linked to xaxis {t['xaxis']} the...
If the dcc.Graph is initially empty and populated with a callback, the graph may be covered by other components until the window is resized (which will trigger a resizing event)....
@michaelbabyn found that this change could be the cause: https://github.com/plotly/dash/issues/1519 (this was merged in 2.7.1: https://github.com/plotly/dash/blob/6b31a8fd093f996e9321a0e723c15607b4d92f40/CHANGELOG.md?plain=1#L267)
Related! https://github.com/plotly/dash/issues/1934
Related, similar logic: https://github.com/plotly/plotly.py/issues/4452 The current workaround for that issue is to set `bingroup=None`
Hi! Here's an updated version of the workaround that takes advantage of `Patch()` ([partial property updates](https://dash.plotly.com/partial-properties)) to improve performance, especially with large datasets: ``` import dash import dash_ag_grid as dag...
Updated workaround: ``` from dash import Dash, callback, clientside_callback, Input, Output, State, dcc, html, ctx from dash import Dash, dcc, html, dash_table, Input, Output, State, callback import base64 import datetime...
Right now, the only way would be to create a callback that targets the value and sets it to None, like this: ``` @callback( Output("tabs-example", "value"), Input("unselect-all", "n_clicks"), prevent_initial_call=True )...
It seems to be related to the `filterValueGetter`. This workaround works for me: ``` { "field": "FIXTURE_DATE", "headerName": "Fixture Date", "filter": "agDateColumnFilter", "filterValueGetter": {"function": "d3.timeParse('%Y-%m-%d')(params.data.date)"}, "editable": True, }, ```