if (chartType == ReportChart.BAR_CHART || chartType == ReportChart.AREA_CHART
|| chartType == ReportChart.STACKED_BAR_CHART)
{
while (rs.next())
{
CategoryChartValue catValue = new CategoryChartValue();
catValue.setValue(rs.getDouble(1));
catValue.setSeries(rs.getString(2));
catValue.setCategory(rs.getString(3));
list.add(catValue);
}
}
else if (chartType == ReportChart.PIE_CHART