1

我怎样才能在 Telerik Report 上获得类似的结果,显示百分比而不是默认显示的计数值。

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

谢谢

在此处输入图像描述

4

1 回答 1

1

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

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

这里的关键是ItemLabelFormatRadiusFactor可以把它从中心移到你想要的任何地方

也忘记将其添加到答案中。里面ChartDefaultView.ChartArea加这个

 <telerik:ChartArea.AxisY>
     <telerik:AxisY AxisName="YourName" DefaultLabelFormat="#VAL{p}"/>
 </telerik:ChartArea.AxisY>
于 2013-03-25T11:49:42.783 回答