-
Notifications
You must be signed in to change notification settings - Fork 42
Description
Hello. I'm working on a visualization of flight trajectories and i would like to have a view with 1 big 3D view for trajectory visualization and several smaller 2d graphs for different scalar values.
I've selected SciChart as i like it's "techy" look and i am believer of wasm for such applications.
Now everything works great, but I would like to implement a sync between 2d chart and 3d chart. You have this functionality between 2D and 2D charts via new RolloverModifier({modifierGroup: "group1"}) but i don't see how to do that between 2D and 3D. I understand you will not develop it just because i'm asking - and that makes total sense. However, i want to ask you on the possible way forward: here are the options as i see them:
- programatically reading which point you have selected in 2d chart and programatically setting it on 3d chart.
2.programatically reading which point you have selected in 3d chart and programatically setting it on 2d chart.
i've found some :TODO in your examples here
Examples/Charts2D/TooltipsAndHittest/DatapointSelection/index.tsx
which suggests there may be a way to do this...
I'll appreciate your response.