Replies: 2 comments
-
Forgot to mention this is using |
Beta Was this translation helpful? Give feedback.
0 replies
-
Just for people that find this - there isn't an option to reuse a plot so just do 1). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Suppose I have a slider over a variable that'll generate hundreds of random trajectories:
I'd like to create two plots of this data. One of them is a global overview and the other a zoomed in version that's controlled by another slider. Where the second slider will pan along the x-axis to give me a zoomed in view.
Option 1) create two plots of this data and change the limits on the second plot. This seems inefficient because two different plots needs to update hundreds of trajectories.
Option 2) create one plot of the data, and then another plots that's nothing more than a zoomed in "view" of the first plot. This would be more efficient because two different sources don't need to redraw the same data.
Is it even possible to accomplish the second option?
Beta Was this translation helpful? Give feedback.
All reactions