2012-11-29 49 views
3

我想在我的圖表上應用比例視圖選項。我寫了下面的代碼,它允許我在AxisY上縮放視圖。但不在AxisY2上。如何縮小MS Chart折線圖中的次軸(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上縮放。任何人都可以知道我需要更改或添加的代碼。

回答

2

我已經根據下面的代碼自己解決了這個問題。

chart1.ChartAreas["Area"].AxisY2.ScaleView.Zoomable = true; 
chart1.ChartAreas["Area"].AxisY2.ScaleView.Zoom(ScaleMinValue, ScaleMaxValue);