S
sconeek
Hi all,
am working on a java based web app. it connects to jasper to generate
reports. now i am generating a report which containts various
datapoints. however if the datapoint is zero, it doesnt show up in my
graph. any ideas to how i can work that out. a little bit of my code is
at the bottom.
LinkedList dataPairs = new LinkedList();
while (rs.next()) {
DataPair dataPair = new DataPair(rs.getString(code),
rs.getString(description));
dataPairs.add(dataPair);
}
return dataPairs;
all help/suggestions appreciated.
cheers
am working on a java based web app. it connects to jasper to generate
reports. now i am generating a report which containts various
datapoints. however if the datapoint is zero, it doesnt show up in my
graph. any ideas to how i can work that out. a little bit of my code is
at the bottom.
LinkedList dataPairs = new LinkedList();
while (rs.next()) {
DataPair dataPair = new DataPair(rs.getString(code),
rs.getString(description));
dataPairs.add(dataPair);
}
return dataPairs;
all help/suggestions appreciated.
cheers