如何使Winform图表中的辅助Y轴可滚动?

时间:2018-08-15 11:04:56

标签: c# .net winforms charts scroll

我设法使主Y滚动 有什么方法可以在辅助Y上应用配置?

        chart1.ChartAreas["ChartArea1"].CursorY.IsUserEnabled = true;
        chart1.ChartAreas["ChartArea1"].CursorY.IsUserSelectionEnabled = true;
        chart1.ChartAreas["ChartArea1"].AxisY.ScaleView.Zoomable = true;
        chart1.ChartAreas["ChartArea1"].AxisY.ScrollBar.IsPositionedInside = true;

这似乎不起作用:

chart1.ChartAreas["ChartArea1"].AxisY2.ScaleView.Zoomable = true;
chart1.ChartAreas["ChartArea1"].AxisY2.ScrollBar.IsPositionedInside = true;

enter image description here

0 个答案:

没有答案