<chart:SfChart3D SelectionChanged="SfChart3D_SelectionChanged">
<chart:DoughnutSeries3D Name="doughnut3D"
SelectionMode="MouseMove" />
</chart:SfChart3D> |
private void SfChart3D_SelectionChanged(object sender,
Syncfusion.UI.Xaml.Charts.ChartSelectionChangedEventArgs e)
{
doughnut3D.ExplodeIndex = e.SelectedIndex;
doughnut3D.ExplodeRadius = 10;
} |
<chart:SfChart3D chart:DoughnutSeries3D.DoughnutHoleSize="0.1" >
</chart:SfChart3D> |
<chart:SfChart3D Tilt="-30" Rotation="-35">
</chart:SfChart3D> |
<chart:SfChart3D.Legend>
<chart:ChartLegend DockPosition="Bottom"/>
</chart:SfChart3D.Legend> |