I am trying to get a library of Raphael line diagrams for drawing several sets of values ββfor the same time series, but where the values ββin each set are not consistent (i.e., in each set there is not always a value for each value of x).
In other words, instead of looking like this:
rglinechart(10,10,300,220,[1,2,3,4,5],[[10,20,30,40,50], [20,30,40,50,60], [30,40,50,60,70]]);
my data - like many data of the "real world" - are imperfect and look something like this:
rglinechart(10,10,300,220,[1,2,3,4,5],[[10,"",30,40,50], [20,30,"",50,60], [30,40,50,"",70]]);
By default, if there are fewer y values ββin any set (than the total number of x values), the values ββin the set are assigned x values ββin the normal sequence. In other words, any βgapsβ are brought to an end.
Any ideas on how to build my "holy" data?