Hi
I am trying your product to see if it will suit what I need to achieve. One thing I want to do is have a chart with no grid lines and no tick marks. The chart is a basic ClusterColumn chart. I have read your help and explored all the properties and believe I am using the right properties, but none of these will actually remove the grid lines or tick marks from the chart. I am not sure if this is a bug or I am not looking in the right place.
Here is a whole lot of things I have tried but none have worked. Please point me in the right direction. Thanks so much.
chart.PrimaryValueAxis.MajorGridTextLines.Style = TextLineStyle.None;
chart.PrimaryCategoryAxis.MajorGridTextLines.Style = TextLineStyle.None;
chart.SecondaryValueAxis.MajorGridTextLines.Style = TextLineStyle.None;
chart.SecondaryCategoryAxis.MajorGridTextLines.Style = TextLineStyle.None;
chart.PrimaryValueAxis.MinorGridLines.Style = TextLineStyle.None;
chart.PrimaryCategoryAxis.MinorGridLines.Style = TextLineStyle.None;
chart.SecondaryValueAxis.MinorGridLines.Style = TextLineStyle.None;
chart.SecondaryCategoryAxis.MinorGridLines.Style = TextLineStyle.None;
chart.GridLine.Style = TextLineStyle.None;
chart.PlotArea.Line.Style = TextLineStyle.None;
chart.PrimaryValueAxis.MajorTickMark = TickMarkType.TickMarkNone;
chart.PrimaryCategoryAxis.MinorTickMark = TickMarkType.TickMarkNone;
Matt