Here is the fiddle . I'm not an gRaphael expert, so there may be a better way. I changed the piechart function (line 99 g.pie.js) from
values.sort(function (a, b) { return b.value - a.value; });
to
if (opts.sort !== false) { values.sort(function (a, b) { return b.value - a.value; }); }
And how did your code change to:
r.piechart(100,120,80,[60,40], {sort: false}); r.piechart(300,120,80,[40,60], {sort: false});
source share