这里记录在使用Winform的Chart控件过程中发现的一些技巧点。
1. 撤销所有放大动作
chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset(1); —— 撤销一次放大动作
chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset(0); —— 撤销所有放大动作
2023-11-10 16:16:22
这里记录在使用Winform的Chart控件过程中发现的一些技巧点。
1. 撤销所有放大动作
chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset(1); —— 撤销一次放大动作
chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset(0); —— 撤销所有放大动作