Is there a way to create my own charting palette in which I can specify my own colors?
The ones that are available from
chart.Palette = System.Web.UI.DataVisualization.Charting.ChartColorPalette. //palette
do not really fit in with our design, so creating my own would be nice if this is possible thanks!
You can define your own palette using chart’s PaletteCustomColors collection.
Also if you need to control a color of each datapoint use the datapoint’s color:
Note: Bind chart to data before setting the datapoint colors.