This is a migrated thread and some comments may be shown as answers.

Pie Chart labelling visual issues

1 Answer 64 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Brian Mains
Top achievements
Rank 1
Brian Mains asked on 04 Jan 2010, 09:28 PM
Hello,

On some of our pie charts, the label's overlap each other and make the number's hard to read.  This can be because the pie chart slices are small.  This is producing a visual issue.  Is there a workaround to this?  Can I force the numbers to come out farther away from the pie chart?

Thanks.

1 Answer, 1 is accepted

Sort by
0
Schlurk
Top achievements
Rank 2
answered on 05 Jan 2010, 05:15 PM
You might want to look into using label connectors. You can use this code-behind to do it:

RadChart1.Series[0].Appearance.ShowLabelConnectors = true
RadChart1.Series[0].Appearance.LabelAppearance.Distance = 10; 
RadChart1.Series[0].Appearance.LabelAppearance.LabelConnectorStyle.Color = Color.Blue; 

Or if you prefer the declaration approach:

<telerik:ChartSeries Name="Series 1" Type="Pie">  
    <appearance ShowLabelConnectors="true">  
        <LabelAppearance Distance="20" LabelConnectorStyle-Color="AliceBlue">  
        </LabelAppearance>  
    .... 

Hope this helps :)
Tags
Chart (Obsolete)
Asked by
Brian Mains
Top achievements
Rank 1
Answers by
Schlurk
Top achievements
Rank 2
Share this question
or