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

values of chart overlaping

1 Answer 49 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Zeeshan fawad
Top achievements
Rank 1
Zeeshan fawad asked on 06 Oct 2009, 01:20 PM
Hi, attached is the image of some charts, we have some overlaping of values in the first one.
please tell us some solution for it.
Regards
Zeeshan Fawad.

1 Answer, 1 is accepted

Sort by
0
Schlurk
Top achievements
Rank 2
answered on 06 Oct 2009, 02:34 PM
You could try the IntelligentLabels property:
<telerik:RadChart ID="RadChart1" runat="server"  
                             Skin="Black" Width="780px" Height="500px" 
                             Legend-Visible="true" IntelligentLabelsEnabled="true"
The problem could also be that the slivers of the pie are too close to each other, and then the best suggestion i have would be to make the diameter of the pie chart larger and also enable the labels by doing something like this in the code-behind:

 
pieSeries.Appearance.DiameterScale = 1; 
pieSeries.Appearance.ShowLabelConnectors = true
Where pieSeries would be whatever series you are working with. Note: .75 is the default value for DiameterScale.

Hope this helps.
Tags
Chart (Obsolete)
Asked by
Zeeshan fawad
Top achievements
Rank 1
Answers by
Schlurk
Top achievements
Rank 2
Share this question
or