Does any one know how to get rid of the grid lines on mschart control?
I have so many data points that it just makes it look like a black background.
I tried adjusting the ticks, but that only did that.
:-(
Thanks for your help.
Nick.
Printable View
Does any one know how to get rid of the grid lines on mschart control?
I have so many data points that it just makes it look like a black background.
I tried adjusting the ticks, but that only did that.
:-(
Thanks for your help.
Nick.
This should work:
MSChart.Plot.Axis(VtChAxisIdX).AxisGrid.MajorPen.Style = VtPenStyleNull
MSCHart.Plot.Axis(VtChAxisIdY).AxisGrid.MajorPen.Style = VtPenStyleNull
MSChart.Plot.Axis(VtChAxisIdY2).AxisGrid.MajorPen.Style = VtPenStyleNull
MSChart.Plot.Wall.Pen.Style = VtPenStyleNull
DKCK