Styl linii siatki

Używam standardowej biblioteki wykresów z Visual Studio 2010. Wykres działa dobrze, ale nie mogę zmienić stylu linii siatki osi. Są to właściwości już ustawione w 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;

Chciałbym mieć kropki lub dashdoty typu siatki osi. Próbowałem z:

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

ale nie wiem, jak przypisać własność i / lub czy powyższa częściowa linia kodu jest poprawna.

questionAnswers(2)

yourAnswerToTheQuestion