Reporting, Pie Chart Label Shadow

Does anyone know how to get rid of these shadows?

As long as you're on 8.1.28 or later (Change logs), you can use the configureChart function and add this to it:

def configureChart(data, chart):
	from java.awt import Color
	
	labelShadowColor = Color(0,0,0,0)
	chart.plot.setLabelShadowPaint(labelShadowColor)
2 Likes