Hi David.
Thanks for contacting Syncfusion support.
As per our architectural design of chart, striplines render above the axis. Since, you need to view the major gridlines, you need to adjust the opacity of Stripline’s
FillColor property and set dark color to MajorGridLineStyle’s
StrokeColor property. Please refer to the following code example to adjust the opacity of Stripline’s FillColor.
Code Example:
NumericalAxis axis = new NumericalAxis();
axis.MajorGridLineStyle = new ChartLineStyle() {StrokeColor=Color.Black};
NumericalStripLine strip = new NumericalStripLine();
strip.Start = 5;
strip.Width = 15;
strip.FillColor = Color.FromHex("#33ab92dd");
axis.StripLines.Add(strip);
|
Regards,
Manivannan E.