Can the graph of the graph of the graphical graph of Raphael contradict the data of the time series?

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?

+4
source share
1 answer

I have the same question. we currently use ExtJs for our graphs, but there is a time series error there. we checked dygraph, highcharts, but for some reason we do not use it. and all d3.js materials are not compatible with IE8.

Rafael seems like a good alternative, and I'm wondering if this is possible?

+1
source

All Articles