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
There appears to be some sort of a race condition in pie charts specifically that screws up reactivity. Usually on hover a non static plot would show both toolbar buttons and tooltips for hovered points. With the workaround enabled, however, these two effects get decoupled and you either get no toolbar or no tooltips on hover.
<main>
<Plot data={pieData} configReactivityStrategy="static-plot" /> <!-- on hover shows buttons, not tooltips -->
<Plot data={pieData} config={{ staticPlot: true }} /> <!-- on hover shows tooltips, not buttons -->
<Plot data={pieData} configReactivityStrategy="none" /> <!-- on hover shows everything -->
</main>
The text was updated successfully, but these errors were encountered:
There appears to be some sort of a race condition in pie charts specifically that screws up reactivity. Usually on hover a non static plot would show both toolbar buttons and tooltips for hovered points. With the workaround enabled, however, these two effects get decoupled and you either get no toolbar or no tooltips on hover.
The text was updated successfully, but these errors were encountered: