我怎样才能在 Telerik Report 上获得类似的结果,显示百分比而不是默认显示的计数值。
我在我的应用程序中使用 C#。
谢谢
我怎样才能在 Telerik Report 上获得类似的结果,显示百分比而不是默认显示的计数值。
我在我的应用程序中使用 C#。
谢谢
这就是它在我的应用程序中的外观
<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>