Hai
In Pie chart all the values displayed over the slices. Please see the attachement. I want to display it outside the slices just pointing the slices wth arrows. Please let me know any solution for this without increasing width of the chart due to page dimensions? Is there any properties handle this? LIttle bit increase in width allowed but it does not solve the problem.
this was changed in the upcoming service release to display the labels away from the pie if there is space available.
you can also try reducing the Transform3D.Scale property.
FYI:
The upcoming relese(At that time) dint resolve this issue.
Thanks
Sridhar
maybe you could resolve this by decreasing the value of the Transform3D.Scale property?
using version 9.1.20091.2067, the latest public service release for 9.1, and this code:
<igchart:UltraChart ID="UltraChart1" runat="server" ChartType="PieChart3D" Transform3D-XRotation="30" Version="9.1"> <ColorModel ModelStyle="CustomLinear" AlphaLevel="255" /> <CompositeChart> <Series> <igchartprop:NumericSeries Key="series1"> <points> <igchartprop:NumericDataPoint Value="300950" /> <igchartprop:NumericDataPoint Value="300950" /> <igchartprop:NumericDataPoint Value="300950" /> <igchartprop:NumericDataPoint Value="1203800" /> <igchartprop:NumericDataPoint Value="300950" /> </points> </igchartprop:NumericSeries> </Series> </CompositeChart> <PieChart3D> <Labels FormatString="<PERCENT_VALUE:00.0> ($<DATA_VALUE:#>)" /> </PieChart3D> </igchart:UltraChart>
produced the chart in the attached image. does this code work for you? what version of the chart are you using?
I tried as you said before but it dint resolved that. The size/scale decreases without change the chart/labels. i.e. The lables on the chart dint move only the property changed like zoom out/in. Is there any other solution for this?