ComponentOne FlexChart for UWP
Adding and Positioning Data Labels
Sunburst Chart > Data Labels > Adding and Positioning Data Labels

With Sunburst chart, you can configure the arrangement and display properties for data labels depending on what suits your needs the best. By default, the data labels are not displayed on the chart, however, you can enable them by setting the Position and Content properties of DataLabel class.

The example code below uses the Position and Content properties to enable data labels and set their position.

Copy Code
<c1:C1Sunburst.DataLabel>
<c1:PieDataLabel Position="Inside" 
Content="{}{name}">
</c1:PieDataLabel>
</c1:C1Sunburst.DataLabel>
HTML
Copy Code
sunburst.DataLabel.Content = "{Name}{value}";sunburst.DataLabel.Position = C1.Chart.PieLabelPosition.Inside;