FlexChart | ComponentOne
Sunburst Chart / Data Labels / Adding and Positioning Labels
本主题中
    Adding and Positioning 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.

    拷贝代码
    <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;