1.設置X軸滾動條ide
// 設置X軸默認選中的值範圍 this.chartData.ChartAreas[0].AxisX.ScaleView.Zoom(0, 10); // 啓用相關的 Chart 屬性 this.chartData.ChartAreas[0].CursorX.IsUserEnabled = false; this.chartData.ChartAreas[0].CursorX.IsUserSelectionEnabled = false; this.chartData.ChartAreas[0].AxisX.ScaleView.Zoomable = true; // 將滾動內嵌到座標軸中 this.chartData.ChartAreas[0].AxisX.ScrollBar.IsPositionedInside = true; // 設置滾動條的大小 this.chartData.ChartAreas[0].AxisX.ScrollBar.Size = 15; // 設置滾動條的按鈕的風格 this.chartData.ChartAreas[0].AxisX.ScrollBar.ButtonStyle = ScrollBarButtonStyles.SmallScroll;