| 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
 | | $(document).ready(function(){ |  |   |  |     $.jqplot.config.enablePlugins = true; |  |   |  |     s1 = [['a',2], ['b',6], ['c',7], ['d',10]]; |  |     s2 = [['a', 4], ['b', 7], ['c', 6], ['d', 3]]; |  |     s3 = [['a', 2], ['b', 1], ['c', 3], ['d', 3]]; |  |     s4 = [['a', 4], ['b', 3], ['c', 2], ['d', 1]]; |  |      |  |     s5 = [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]; |  |      |  |     plot1 = $.jqplot('chart1', [s1], { |  |         seriesDefaults:{ |  |             renderer:$.jqplot.PieRenderer |  |         }, |  |         legend: {show:true} |  |     }); |  |      |  |     plot2 = $.jqplot('chart2', [s2], { |  |         seriesDefaults: { |  |             renderer:$.jqplot.PieRenderer, |  |             rendererOptions:{ |  |                 sliceMargin: 4, |  |                 startAngle: -90 |  |             } |  |         } |  |     }); |  |   |  |     plot3 = $.jqplot('chart3', [s3], { |  |         captureRightClick: true, |  |         seriesDefaults:{ |  |             renderer:$.jqplot.PieRenderer, |  |             shadow: false, |  |             rendererOptions:{ |  |                 startAngle: 90, |  |                 sliceMargin: 4, |  |                 highlightMouseDown: true |  |             } |  |         }, |  |         legend: { |  |             show: true, |  |             location: 'e', |  |             placement: 'outside' |  |         }       |  |     }); |  |   |  |     plot5 = $.jqplot('chart5', [s5], { |  |         seriesDefaults:{ |  |             renderer:$.jqplot.PieRenderer |  |         } |  |     }); |  |      |  |     plot6 = $.jqplot('chart6', [[1,2,3,4]]); |  |      |  |     $('#chart1').bind('jqplotDataClick',  |  |         function (ev, seriesIndex, pointIndex, data) { |  |             $('#info1').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data); |  |         } |  |     ); |  |      |  |     $('#chart2').bind('jqplotDataHighlight',  |  |         function (ev, seriesIndex, pointIndex, data) { |  |             $('#info2').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data); |  |         } |  |     ); |  |      |  |     $('#chart2').bind('jqplotDataUnhighlight',  |  |         function (ev) { |  |             $('#info2').html('Nothing'); |  |         } |  |     );  |  |      |  |     $('#chart3').bind('jqplotDataRightClick',  |  |         function (ev, seriesIndex, pointIndex, data) { |  |             $('#info3').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data); |  |         } |  |     );   |  |      |  |     $(document).unload(function() {$('*').unbind(); }); |  | }); | 
 |