I am making a plot which has both primary and secondary y axis but on zooming the chartarea only primary x axis and primary y axis are zooming and the scrollbar doesn't appear on the secondary Y Axis
chrtarea.CursorX.IsUserEnabled = true;
chrtarea.CursorX.IsUserSelectionEnabled = true;
chrtarea.CursorY.IsUserEnabled = true;
chrtarea.CursorY.IsUserSelectionEnabled = true;
chrtarea.AxisX.ScaleView.Zoomable = true;
chrtarea.AxisY.ScaleView.Zoomable = true;
chrtarea.AxisY2.ScaleView.Zoomable = true;
Is there a problem with the code.Please tell how to do this.