Hello,
I am trying to implement the keyboard functionality described here. However, I have several charts connected via a modifierGroup
. When I try to add the following code:
sciChartSurface.chartModifiers.add(new KeyboardZoomPanModifier({ scrollFactor: 0.1, modifierGroup: 'group1' }));
it works only for the chart that is currently focused. Is it possible to extend this functionality across multiple SciChart surfaces?
- Zino As asked 3 weeks ago
- You must login to post comments
Hello,
There is no out-of-the-box functionality for this at the moment.
So you would need to implement and manage those bindings explicitly.
Here is an example of how we tried an alternative solution to achieve something similar and bind multiple modifiers:
https://github.com/ABTSoftware/SciChart.JS.Examples/blob/master/Examples/src/components/Examples/FeaturedApps/ShowCases/ServerTrafficDashboard/ModifierGroup.ts
I hope this will be helpful.
- Jim Risen answered 2 weeks ago
- You must login to post comments
Please login first to submit.