我正在尝试在图表中显示一个饼图及其值,但是当我设置showLabels =“true”时,它还会在值周围添加一个白框。
我想删除这些框但是strokeColor和strokeWidth属性似乎不起作用。有没有解决方法呢?
<RadPieChart height="300" allowAnimation="true" row="0">
<PieSeries tkPieSeries expandRadius="0.5" outerRadiusFactor="0.7" [items]="pieSource" valueProperty="Amount" showLabels="true">
<PointLabelStyle tkPieLabelStyle strokeColor="cyan" strokeWidth="3" fillColor="red" textSize="8"></PointLabelStyle>
</PieSeries>
</RadPieChart>