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
The object plotlyEvent passed to a listener to plotly_click events contains amongst other the properties:
plotlyEvent.points[0].data = trace before transforms
plotlyEvent.points[0].fullData = trace after transforms
This codepen shows a chart with a sort transform that reorders the circles from A, B, C to B, C, A. It also defines a plotly_click listener that outputs the order in data and fullData.
The screencast below shows how before zooming the order in fullData is B, C, A but after zooming the order changes to A, B, C.
The text was updated successfully, but these errors were encountered:
The object
plotlyEvent
passed to a listener toplotly_click
events contains amongst other the properties:plotlyEvent.points[0].data
= trace before transformsplotlyEvent.points[0].fullData
= trace after transformsThis codepen shows a chart with a
sort
transform that reorders the circles fromA, B, C
toB, C, A
. It also defines aplotly_click
listener that outputs the order indata
andfullData
.The screencast below shows how before zooming the order in
fullData
isB, C, A
but after zooming the order changes toA, B, C
.The text was updated successfully, but these errors were encountered: