I am using msCharts.
I have plotted a line with x axis points between 38000 and 42000.
I am trying to add a StripLIne. I get no error but cannot see it:
StripLine stripLine = new StripLine();
stripLine.Text = "Strip";
stripLine.Interval = 0;
stripLine.IntervalOffset = 41000;
stripLine.StripWidth = 500;
stripLine.BackColor = Color.Red;
chart.ChartAreas[0].AxisX.StripLines.Add(stripLine);
What is wrong?