Currently i’m using something like the following:
LineSeries lineSeries = (LineSeries)parentChart.Series.Add(SeriesType.Line);
lineSeries.Name = seriesName;
lineSeries.DataLabels.Mode = DataLabelsMode.None;
lineSeries.Markers.Style = PointStyle.Cone;
lineSeries.Appearance.FillMode = AppearanceFillMode.Series;
lineSeries.Appearance.LineMode = AppearanceLineMode.Series;
lineSeries.LineFillEffect.SetSolidColor(colorOfLine);
lineSeries.Legend.Mode = SeriesLegendMode.Series;
Right now, I can see the multiple lines but they are all black, even in the legend.
I feel like I’m really missing something here but according to the document, this should work.
What am i doing wrong?
Imported from legacy forums. Posted by Jay (had 3195 views)