4

Does anyone have any examples of stacked graphs (or stream graphs) in Raphael?

I'm wondering if there is a working Raphael equivalent of this D3 streamgraph:

enter image description here

The closest I've seen is this line chart example:

enter image description here

I guess I could just knock up a stacked graph based on this, but it'd be great if anyone already had some outline code.

VividD
  • 10,456
  • 6
  • 64
  • 111
Richard
  • 31,629
  • 29
  • 108
  • 145
  • does it have to be Raphael? cause [highcharts](http://www.highcharts.com/demo/area-stacked) are pretty powerful, and it's all JS... – Eliran Malka Apr 21 '12 at 18:55

1 Answers1

0

Are you looking for something like this. It's based on Raphael.

If you need something more powerful I could recommend Sencha ExtJS. Area Graph #1 and Area Graph #2 are looking quite like your posted D3 streamgraph.

Robar
  • 1,929
  • 2
  • 30
  • 61
  • Thanks. I ended up using Flot - I was looking for IE8 support and Flot turned out to have working examples already: http://people.iola.dk/olau/flot/examples/stacking.html – Richard Apr 30 '12 at 21:43