Hi John,
The easiest way is to set individual fill and stroke for each series, for example:
series1.FillStyle = new NColorFillStyle(Color.Red);
series1.BorderStyle = new NStrokeStyle(1, Color.Red);
series2.FillStyle = new NColorFillStyle(Color.Green);
series2.BorderStyle = new NStrokeStyle(1, Color.Green);
You can also apply a stylesheet with predefined palette first, and then overwrite the colors for some of the series.
Alternatively, you create a custom palette (NChartPalette type) and use the NStyleSheet.CreateFromPalette method to create a stylesheet from it. The NChartPalette type has a list of series colors (see the SeriesColors property).
Best Regards,
Milen