Вопрос

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