I am using zoomcharts api for drill downs in pie charts and it seems to work pretty good on all browsers except for safari which crashes after few clicks. I am using basic configurations for it as followed:
var data = {
"subvalues":[
{"value":50, "name":"Apples", "subvalues":[
{"value":25, "name":"Red apples"},
{"value":15, "name":"Yellow apples"},
{"value":10, "name":"Green apples"}]},
{"value":30, "name":"Oranges", "subvalues":[
{"value":10, "name":"Big oranges"},
{"value":9, "name":"Small oranges"},
{"value":7, "name":"Green oranges"},
{"value":4, "name":"Pink oranges"}]},
{"value":20, "name":"Grapes", "subvalues":[
{"value":15, "name":"Sweet grapes"},
{"value":5, "name":"Sour grapes"}]},
{"value":50, "name":"Other fruits", style:{fillColor:"lightGray"}}]
};
var t = new PieChart({
container: document.getElementById("demo"),
area: { height: 350 },
data: { preloaded: data }
});
any help is highly appreciated.