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
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;