749ac165f78cc399a691143880be035e5bfd8b9a
[dygraphs.git] / tests / annotation-gviz.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <!--
5 For production (minified) code, use:
6 <script type="text/javascript" src="dygraph-combined.js"></script>
7 -->
8 <script type="text/javascript" src="../dist/dygraph.js"></script>
9
10 <script type='text/javascript' src='http://www.google.com/jsapi'></script>
11 <script type='text/javascript'>
12 google.load('visualization', '1', {'packages':['annotatedtimeline']});
13 google.setOnLoadCallback(drawChart);
14 function drawChart() {
15 var data = new google.visualization.DataTable();
16 data.addColumn('date', 'Date');
17 data.addColumn('number', 'Sold Pencils');
18 data.addColumn('string', 'title1');
19 data.addColumn('string', 'text1');
20 data.addColumn('number', 'Sold Pens');
21 data.addColumn('string', 'title2');
22 data.addColumn('string', 'text2');
23 data.addRows([
24 [new Date(2008, 11 ,1), 30000, undefined, undefined, 40645, undefined, undefined],
25 [new Date(2008, 11 ,2), 14045, undefined, undefined, 20374, undefined, undefined],
26 [new Date(2008, 11 ,3), 55022, undefined, undefined, 50766, undefined, undefined],
27 [new Date(2008, 11 ,4), 75284, undefined, undefined, 14334, 'Out of Stock','Ran out of stock on pens at 4pm'],
28 [new Date(2008, 11 ,5), 41476, 'Bought Pens','Bought 200k pens', 66467, undefined, undefined],
29 [new Date(2008, 11 ,6), 33322, undefined, undefined, 39463, undefined, undefined]
30 ]);
31
32 for (var i = 1; i < 14; i++) {
33 data.addRows([
34 [new Date(2008, 11 , 6 + i), i * 1000, 'title1-' + i, 'text1 ' + (i * 1000 - i), (i * 2000 + i), 'title2-' + i, 'text2' + i * 1000],
35 ]);
36 }
37
38 var chart = new google.visualization.AnnotatedTimeLine(document.getElementById('gviz_div'));
39 chart.draw(data, {displayAnnotations: true});
40
41 var g = new Dygraph.GVizChart(document.getElementById("dg_div"));
42 g.draw(data, {displayAnnotations: true, labelsKMB: true});
43 }
44 </script>
45 </head>
46
47 <body>
48 <h3>Google AnnotatedTimeline:</h3>
49 <div id='gviz_div' style='width: 700px; height: 240px;'></div>
50
51 <h3>Dygraph.GVizChart:</h3>
52 <div id='dg_div' style='width: 700px; height: 240px;'></div>
53 </body>
54 </html>