This property is applicable only to Pie/Doughnut/Funnel charts. This property causes the Pie/Doughnut/Funnel slice to separate out.
Type: Boolean
Namespace: Visifire.Commons
Assembly:
|
Silverlight: |
SLVisifire.Charts (in SLVisifire.Charts.dll) |
|
WPF: |
WPFVisifire.Charts (in WPFVisifire.Charts.dll) |
This attribute applies to:
Example:
<vc:Chart ... >
<vc:Chart.Series>
<vc:DataSeries RenderAs="Pie">
<vc:DataSeries.DataPoints>
<vc:DataPoint YValue="10" Exploded="True"/>
<vc:DataPoint YValue="20"/>
</vc:DataSeries.DataPoints>
</vc:Chart.Series>
</vc:Chart>
Below is the chart after setting Exploded property in DataPoint.

Remarks:
Exploding works by default if DataPoint is clicked. But if MouseLeftButtonUp or MouseLeftButtonDown event is attached to any DataPoint or DataSeries, then exploding doesn't work on click of a DataPoint.