Hi,
I'm adding a NDataZoomTool and a NSelectorTool and a NDataPanTool() to a NCartesianChart followed by adding a RangeSelections
m_Chart.RangeSelections.Add(new NRangeSelection());
NDataZoomTool m_DataZoomTool = new NDataZoomTool();
ChartControl.Controller.Tools.Add(m_DataZoomTool);
ChartControl.Controller.Tools.Add(new NSelectorTool());
NDataPanTool dpt = new NDataPanTool();
ChartControl.Controller.Tools.Add(dpt);
I would like to perform a Zoom of a muliYaxis plot, see Image 1. However, when I try to Zoom in a on part of the graph only the left Y-axis is scaled according the zoom - the right Y-axis is not scaled (is ot affected by the zoom) - see attached Image 2 and Image 3.