How can I add click event to my Rapahel pie chart ?
var r = Raphael("holder-1",340, 185);
pie = r.g.piechart(150,85, 75, values , {legend: labels, legendpos: "east"});
i got the answer it is pie.click(function () { });
can i pass value to the onclick event ?, here can i pass values and labels to onclcik function ??