3

我想在我的图表上应用比例视图选项。我编写了以下代码,允许我在 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 上缩放。任何人都可以知道我必须在我的代码中更改或添加什么。

4

1 回答 1

2

我已经根据下面的代码自己解决了这个问题。

chart1.ChartAreas["Area"].AxisY2.ScaleView.Zoomable = true;
chart1.ChartAreas["Area"].AxisY2.ScaleView.Zoom(ScaleMinValue, ScaleMaxValue);
于 2013-01-17T08:21:54.140 回答