0

enter image description here

I have been trying to implement Shinobi Pie Chart, everything working fine but I can't remove this white broad border from the pie series(Please refer the image attachment).

I have tried something like style.setCrustShown(false);(but it removes the thin separator line, not what I actually want to be removed).

Please, post the appropriate method to remove that border.
Thanks in advance
Sreedhu Madhu
  • 2,480
  • 2
  • 30
  • 40

1 Answers1

0

Finally, I found the solution.

PieSeriesStyle style = series.getStyle();

style.setChartEffect(RadialEffect.FLAT);// does the trick
Sreedhu Madhu
  • 2,480
  • 2
  • 30
  • 40