Category / Section
How to change the data marker connector type of pie and doughnut series to Bezier?
1 min read
You can change the data marker’s connector line type of pie and doughnut series to Bezier using the ConnectorLineType property of pie and doughnut series. The following code snippet and screenshot illustrate this.
XAML
<chart:PieSeries DataMarkerPosition="OutsideExtended" ItemsSource ="{Binding Data1}" ConnectorLineType="Bezier"/>
C#
pieSeries.DataMarkerPosition = CircularSeriesDataMarkerPosition.OutsideExtended; pieSeries.ConnectorLineType = ConnectorLineType.Bezier;