2

I am using live charts for my winform application graph. In this I want to hide background grid lines based on user action. Is there any default option for that ?

www.lvcharts.net

Aneez
  • 157
  • 1
  • 2
  • 14

1 Answers1

4

You can do it by adjusting strokethickness of the graph. As shown below :

cartesianChart.AxisX[0].Separator.StrokeThickness = 0;
cartesianChart.AxisY[0].Separator.StrokeThickness = 0;
Aneez Azeez
  • 78
  • 1
  • 7