This is the ideal solution for both cases - one color for each series or chart palettes:
myChart.ApplyPaletteColors(); foreach (var series in myChart.Series) { foreach (var point in series.Points) { point.Color = Color.FromArgb(220, point.Color); } }
Oleg Sakharov
source share