Hi,
I am struggling adding multiple series to a Bar Chart in MyEclipse Reports.
Do I need to create a dataset for each series? Or shall I use Filters or Parameters?
Here is the base query I am using for the dataset:
select YEAR, MONTH , SUM(CLIENTS) as “nclients”
from DAILYREGISTRATIONS
group by YEAR, MONTH
and I would like to plot the series in a Bar Chart per YEAR
Thanks for your help
Paolo