source: schedule/chart.php@ 15479

Last change on this file since 15479 was 15479, checked in by tanio, 13 years ago
Jaypee
File size: 616 bytes
Line 
1<script type="text/javascript">
2
3$(function () {
4 $('#Graph').highcharts({
5
6 chart: {
7 animation: false
8 },
9
10 xAxis: {
11 categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
12 },
13
14 series: [{
15 data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
16 }]
17
18 });
19
20 i = 1;
21 $('#update').click(function() {
22 var chart = $('#Graph').highcharts();
23 chart.series[0].data[0].update(i++ % 2 ? 200 : 0);
24 });
25});
26
27
28</script>
Note: See TracBrowser for help on using the repository browser.