Running latest v7.0.5 of the platform. I am declaring a chart using YARG. I have a report band (SQL) like this:
select mlgcode as mlgcode, days as days, sum(ordercount) as orders
from ResponseCurve
where mlgid in ${mlgid}
group by mlgcode, days
order by 1, 2
When a user selects more than one mlgid (giving more than one mlgcode), I would like each one to show as its own line on a SerialChart.
How do I make this happen?