I want to plot X series lines all in different but "nice" colors. By "nice" I mean bright and different.
This is what I am doing at the moment:
var colors = Enum.GetValues(typeof(KnownColor));
int c = -1;
foreach (var ser in AllSeries)
{
c++;
chart.PlotDataSeries( Color.FromKnownColor((KnownColor)colors.GetValue(c % 100 + 1)), );
}
But this gives me lots of similar drab colors, mainly black and grey, because KnownColor has a lot of repeated "system menu" type colors included.