telerik报告图表百分比

时间:2013-03-25 08:59:03

标签: c# visual-studio telerik-reporting

如何在Telerik Report上获得类似的结果,显示百分比而不是默认显示的Count值。

我在我的应用程序中使用C#。

感谢

enter image description here

1 个答案:

答案 0 :(得分:1)

这就是它在我的应用中的外观

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

此处的关键是ItemLabelFormat RadiusFactor,您可以根据需要从中心移动

忘记将此添加到答案中。在ChartDefaultView.ChartArea内添加此

 <telerik:ChartArea.AxisY>
     <telerik:AxisY AxisName="YourName" DefaultLabelFormat="#VAL{p}"/>
 </telerik:ChartArea.AxisY>