I have a pie chart that has one particular slice (a datarow in the datasource that always exists) that I would like to have displayed as the same color each time. Is there a way to set individual slices to a given color?
Thank you - that got me going!
You can try the next code:
this.ultraChart1.ColorModel.Skin.PEs.Add(new PaintElement(Color.Red));
this.ultraChart1.ColorModel.Skin.PEs.Add(new PaintElement(Color.Blue));
this.ultraChart1.ColorModel.Skin.PEs.Add(new PaintElement(Color.Yellow));