Page 1 of 1

Pie Chart, Pie Seperators

Posted: Fri Sep 21, 2012 8:14 am
by 15662902
Is it possible to change the Pie Chart, Pie Seperators from black to white and to also increase the thickness?

Re: Pie Chart, Pie Seperators

Posted: Fri Sep 21, 2012 10:33 am
by 10050769
Hello mikethelad,

To achieve change color of the Pie Chart border you only need disable the colorEach of pie Series. You can do something as next code:

Code: Select all

  private void InitializeChart()
    {
        Steema.TeeChart.Styles.Pie pie1 = new Steema.TeeChart.Styles.Pie(tChart1);
        pie1.Add(1, Color.Red);
        pie1.Add(2, Color.White);
        pie1.Add(3, Color.Blue);
        pie1.ColorEach = false;
        pie1.Pen.Color = Color.Lime;
    }
Can you tell us if previous code works as you want?

Thanks,

Re: Pie Chart, Pie Seperators

Posted: Fri Sep 21, 2012 3:14 pm
by 15662902
Thanks, works

Re: Pie Chart, Pie Seperators

Posted: Mon Sep 24, 2012 9:31 am
by 10050769
Hello mikethelad,

I am glad my solution has worked fine for you :D.

Thanks,