Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
314
Applying an override to specific layer in a composite chart
posted

Hi,

I have a composite chart with two layers. I applied an override to one column but it affected the two layers instead of only the column of the first layer. Is there a way to accomplish this?

Parents
  • 26458
    Offline posted

    Instead of using the Overrides collection, you can change the PE property in each individual point in a series. So, for example, if you have a layer containing a NumericSeries with 3 points and you want to change the color of the second point, you can say
    numericSeries.Points[1].PE = new PaintElement(Color.Red);

Reply Children