Hello,
how can I change the fill color of a RadarChart? With:
(layer.ChartTypeAppearance as RadarChartAppearance).ColorFill = true;
I can activate filling only the filling mode, but no property allows to set the filling color. A short code example could help me.
Regards
ThomasM
Yes, this seems to be broken. I think in my last reply the color I set, coincidentally matched the fill color. I've entered a bug report in our system and fixed it. This fix should be available in the next available hotfix. The bug report number is 16572. In the mean time, you can set the fill color by using one of the existing color models. For example, you can set chart.ColorModel.ModelStyle to CustomSkin and add PaintElements to chart.ColorModel.Skin.PEs collection.
Hi Max,
this changes only the border color. I want to change the filling color too.
You can set the color on the series object:mySeries.PEs.Add(new PaintElement(Color.Blue));