ChartPieType.ExplodedIndex

How do i set exploded index in c sharp?

2 Replies

AS Asman December 28, 2009 12:29 AM UTC


chart1.Areas[0].Series[0].ExplodedIndex = 0

does not work in WPF.


MP Murugavel P Syncfusion Team December 28, 2009 11:15 AM UTC

Hi Asman,

Thanks for choosing Syncfusion products.

Kindly use the following lines of code to set the exploded index for Pie chart.

C#:

int index = 0;
ChartPieType.SetExplodedIndex(chart1.Areas[0].Series[0], index);


Please let us know if you have any questions.

Thanks & Regards,
Murugavel P

Loader.
Up arrow icon