1
I am using an external Raphael.js file to create a circular chart. I used this page as the source: https://jbkflex.wordpress.com/2011/07/28/creating-a-svg-pie-chart-html5/
I wanted to add a title when passing the mouse with its value.
Code example: http://jsfiddle.net/tttxfvcu/8/
Thanks for the tip.
– akm
To appear a value when passing the mouse you can put a title attribute. Right after: Arc.attr("Fill", color[i]); Arc.attr("title", "Value: "+data[i]); http://jsfiddle.net/tttxfvcu/9/
– Matheus Cristian