Hello,
I try to draw a scatter graph were the data points are marked as crosses.
The following works perfectly:
ChartSeries extrema = new ChartSeries("Extrema");
extrema.Type = ChartSeriesType.Scatter;
but when I add the following line:
extrema.Style.Symbol.Shape = ChartSymbolShape.Cross;
the points become invisible.
If I use Circle or Diamond instead of Cross, everything works as expected.
How should I tackle this issue?
Thanks.