Winform的Chart控件使用笔记
时间:2014-08-12 10:08:33
收藏:0
阅读:365
这里记录在使用Winform的Chart控件过程中发现的一些技巧点。
1. 撤销所有放大动作
chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset(1); —— 撤销一次放大动作
chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset(0); —— 撤销所有放大动作
评论(0)