图表网格线样式

本文关键字:样式 网格线 | 更新日期: 2023-09-27 18:19:28

我使用的是Visual Studio 2010中的标准图表库。图表运行良好,但我无法更改轴网格线样式。这些是Form1.Designers.cs 中已经设置的属性

chartArea3.Name = "ChartArea1";
        this.chart1.ChartAreas.Add(chartArea3);
        legend3.Name = "Legend1";
        this.chart1.Legends.Add(legend3);
        this.chart1.Location = new System.Drawing.Point(12, 68);
        this.chart1.Name = "chart1";
        series5.ChartArea = "ChartArea1";
        series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
        series5.Color = System.Drawing.Color.Red;
        series5.Legend = "Legend1";
        series5.Name = "Temp";
        series6.ChartArea = "ChartArea1";
        series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
        series6.Color = System.Drawing.Color.Blue;
        series6.Legend = "Legend1";
        series6.Name = "Umid";
        this.chart1.Series.Add(series5);
        this.chart1.Series.Add(series6);
        this.chart1.Size = new System.Drawing.Size(647, 182);
        this.chart1.TabIndex = 8;
        this.chart1.Text = "chart1";
        this.chart1.ChartAreas[0].AxisY.Interval=5;

我想要轴网格类型的点或dashdots我尝试过:

this.chart1.ChartAreas[0].AxisX.LineDashStyle.??????

但是我不知道如何分配属性和/或上面的部分代码行是否正确。

图表网格线样式

最后我做对了:

 this.chart1.ChartAreas[0].AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDotDot;
        this.chart1.ChartAreas[0].AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDotDot;

这是有效的,并允许访问栅格轴的线样式。

 this.chart1.ChartAreas[0].AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.availableStileSelectionHere;

您需要检查ChartDashStyle枚举。您的选择应该是DashDashDotDashDotDotDotSolidNotSet

CCD_ 7是类型CCD_。

所以试试:

this.chart1.ChartAreas[0].AxisX.LineDashStyle.Dot

this.chart1.ChartAreas[0].AxisX.LineDashStyle.DashDot