我想在我的图表上应用比例视图选项。我编写了以下代码,允许我在 AxisY 上缩放视图。但不在 AxisY2 上。
chart1.ChartAreas["Area"].CursorY.IsUserEnabled = true;
chart1.ChartAreas["Area"].CursorY.IsUserSelectionEnabled = true;
chart1.ChartAreas["Area"].AxisY.ScaleView.Zoomable = true;
chart1.ChartAreas["Area"].AxisY2.ScaleView.Zoomable = true;
我可以在 AxisY 上缩放,但不能在 AxisY2 上缩放。任何人都可以知道我必须在我的代码中更改或添加什么。