}
else if (chartType == ReportChart.BUBBLE_CHART)
{
while (rs.next())
{
XYZChartValue xyzValue = new XYZChartValue();
xyzValue.setSeries(rs.getString(1));
xyzValue.setValue(rs.getDouble(2));
xyzValue.setYValue(rs.getDouble(3));
xyzValue.setZValue(rs.getDouble(4));
list.add(xyzValue);
}
}
else if (chartType == ReportChart.TIME_CHART || chartType == ReportChart.TIME_AREA_CHART