This question is locked. New answers and comments are not allowed.
Hi, I'm trying to show some pie charts with their values(%) inside the chart but when I set showLabels="true" it also adds a white box around the value.
I'd like to remove these boxes but the strokeColor and strokeWidth properties doesn't seem to work. Is there any workaround for this?
Also tried showPercentage but nothing seems to happen.
Also, would be possible to add "R$" before the values on the legend labels in Android?
<RadPieChart height="300"> <PieSeries tkPieSeries seriesName="attendance" outerRadiusFactor="0.8" showLabels="true" [items]="anticipated" valueProperty="value" legendLabel="healthPlanName"> <PointLabelStyle tkPieLabelStyle fillColor="Transparent" textSize="18"></PointLabelStyle> </PieSeries> <Palette tkPiePalette seriesName="attendance"> <PaletteEntry tkPiePaletteEntry strokeWidth="1" fillColor="#0BAD3E" strokeColor="#ccc"></PaletteEntry> <PaletteEntry tkPiePaletteEntry strokeWidth="1" fillColor="#33E76A" strokeColor="#ccc"></PaletteEntry> <PaletteEntry tkPiePaletteEntry strokeWidth="1" fillColor="#6CEC93" strokeColor="#ccc"></PaletteEntry> </Palette> <RadLegendView tkPieLegend position="Right" offsetOrigin="TopRight" width="120"></RadLegendView></RadPieChart>