문제

how can i get similar result on Telerik Report with showing percentage instead of the Count value that is shown by default.

i'm using C# in my application.

thanks

enter image description here

도움이 되었습니까?

해결책

This is how it looks in my app

<telerik:PieSeriesDefinition AxisName="YourName"
                             ShowItemLabels="True"
                             ItemLabelFormat="#%{P0}" 
                             RadiusFactor="0.7">

The key here is the ItemLabelFormat with RadiusFactor you can move it as far as you want from the center

Forgot to add this to the answer as well. Inside ChartDefaultView.ChartArea add this

 <telerik:ChartArea.AxisY>
     <telerik:AxisY AxisName="YourName" DefaultLabelFormat="#VAL{p}"/>
 </telerik:ChartArea.AxisY>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top