1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<html>
<head>
<title>gRaphaël Pie Chart - iterating through sectors using .each()</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]);
// revealing the value of each sector by iterating through the piechart with .each
// simple callback that logs each sector received
var callback = function() {
console.log(this.sector);
};
pie.each(callback);
}
</script>
</head>
<body>
</body>
</html>
|