diff options
Diffstat (limited to 'test/g.raphael/examples/piechart/piechart_basic.html')
| -rw-r--r-- | test/g.raphael/examples/piechart/piechart_basic.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/g.raphael/examples/piechart/piechart_basic.html b/test/g.raphael/examples/piechart/piechart_basic.html new file mode 100644 index 0000000..54cc4bb --- /dev/null +++ b/test/g.raphael/examples/piechart/piechart_basic.html @@ -0,0 +1,24 @@ +<html> + <head> + <title>gRaphaël Pie Chart - a simple piechart example</title> + <script type="text/javascript" src="../raphael-min.js"></script> + <script type="text/javascript" src="../../g.raphael-min.js"></script> + <script type="text/javascript" src="../../g.pie-min.js"></script> + <script type="text/javascript"> + window.onload = function() { + // Creates canvas 640 × 480 at 10, 50 + var r = Raphael(10, 50, 640, 480); + // Creates pie chart at with center at 320, 200, + // radius 100 and data: [55, 20, 13, 32, 5, 1, 2] + var pie = r.g.piechart(320, 240, 100, [55, 20, 13, 32, 5, 1, 2]); + + // add a click event to the pie chart + pie.click(function() { + alert("You clicked on the pie chart!"); + }); + } + </script> + </head> + <body> + </body> +</html>
\ No newline at end of file |
