Pie Chart, Pie Seperators
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
Pie Chart, Pie Seperators
Is it possible to change the Pie Chart, Pie Seperators from black to white and to also increase the thickness?
- Attachments
-
- graph.JPG (14.32 KiB) Viewed 4421 times
Re: Pie Chart, Pie Seperators
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:
Can you tell us if previous code works as you want?
Thanks,
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;
}
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
Re: Pie Chart, Pie Seperators
Thanks, works
Re: Pie Chart, Pie Seperators
Hello mikethelad,
I am glad my solution has worked fine for you .
Thanks,
I am glad my solution has worked fine for you .
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |