Hi, I found I can make the lines with:
chart.PrimaryCategoryAxis.HasMajorGridLines = true;
I am new to this, sorry if this was obvious.
Now I have this (different data set):
I would like to change the above to this:
I have tried this, but it has no effect:
chart.PrimaryCategoryAxis.MajorGridLines.Border.LinePattern = OfficeChartLinePattern.Dash;
chart.PrimaryCategoryAxis.MajorGridLines.Border.Transparency = 0.6;
chart.PrimaryCategoryAxis.MajorTickMark = OfficeTickMark.TickMark_Outside;
chart.PrimaryCategoryAxis.Border.LinePattern = OfficeChartLinePattern.Dash;
chart.PrimaryCategoryAxis.Border.Transparency = 0.6;
Any suggestions?