FlexChart for UWP
データラベルの追加と配置
Sunburst > データラベル > データラベルの追加と配置

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.

コードのコピー
<c1:C1Sunburst.DataLabel>
<c1:PieDataLabel Position="Inside" 
Content="{}{name}">
</c1:PieDataLabel>
</c1:C1Sunburst.DataLabel>
HTML
コードのコピー
sunburst.DataLabel.Content = "{Name}{value}";sunburst.DataLabel.Position = C1.Chart.PieLabelPosition.Inside;