m.setAddressColumn(col4b);
row4.addCell(new GridCell(m));
BarChart bar = new BarChart();
bar.setThreeDimensional(true);
bar.setTitle("Score Summary");
bar.setDataQuery(queryA);
bar.setFlipAxis(true);
bar.setLegendLocation(LegendLocation.none);
bar.setValueSeriesColumn(col2a);
bar.setCategorySeriesColumn(col1a);
row4.addCell(new GridCell(bar));
return report;
}