Hi,
I have created a Pie chart and I am able to assign a color to each slice but I want to turn off the border for each slice. Currently setting any Border attribute on a ChartPoint doesn't seem to have any affect. I am using Cells for Java 1.9.5.1
I am doing the following for each ChartPoint. Setting the Foreground Color works great, turning off the Border does nothing.
chtPoints.getChartPoint(i).getArea().setForegroundColor(colorSetting);
chtPoints.getChartPoint(i).getBorder().setVisible(false);
Thanks,
Steve