Hi,
I have an ArrayCollection of Objects. Each Object with three attributes: CustomerID, Income and Date My goal is to chart this data for each customer (or a couple together) in a Income by Date LineChart display. Selection of customers is done with ArrayCollection filters. Data is fetched from an SQL database, however, each customer has some data points missing. If there was zero income on August 8, 2010 there will be no entry for that. Charting the ArrayCollection as is, is misleading because there is no indication of the missing data points.
One way to solve this is to artificially add zero points for the missing dates for each customer. However, this would explode the data set (and impact performance). Can anyone help with correctly charting this sparse ArrayCollection without adding a lot redundant data points?
Thanks for helping!