*/
public void afterReportInit() throws JRScriptletException
{
try
{
AreaChartProperties areaChartProperties = new AreaChartProperties();
double[][] data = {{10, 15, 30, 53}, {6, 30, 10, 21}, {20, 25, 20, 8}};
Paint[] paints = {new Color( 0, 255, 0, 100 ), new Color( 255, 0, 0, 100 ), new Color( 0, 0, 255, 100 )};
String[] legendLabels = {"Games", "Events", "Players" };
AxisChartDataSet axisChartDataSet = new AxisChartDataSet(data, legendLabels, paints, ChartType.AREA, areaChartProperties);