Commit | Line | Data |
---|---|---|
79420a1e DV |
1 | <html> |
2 | <head> | |
fd2a2ee2 | 3 | <title>gviz</title> |
79420a1e DV |
4 | <!--[if IE]> |
5 | <script type="text/javascript" src="excanvas.js"></script> | |
6 | <![endif]--> | |
7 | <script type="text/javascript" src="../dygraph-combined.js"></script> | |
285a6bda | 8 | <script type="text/javascript" src="../dygraph-canvas.js"></script> |
79420a1e DV |
9 | <script type="text/javascript" src="../dygraph.js"></script> |
10 | <script type="text/javascript" src="http://www.google.com/jsapi"></script> | |
11 | <script type="text/javascript"> | |
12 | google.load('visualization', '1', {packages: ['linechart']}); | |
13 | ||
14 | function drawVisualization() { | |
15 | data = new google.visualization.DataTable(); | |
16 | data.addColumn('date', 'Date'); | |
17 | data.addColumn('number', 'Column A'); | |
18 | data.addColumn('number', 'Column B'); | |
19 | data.addRows(4); | |
20 | data.setCell(0, 0, new Date("2009/07/01")); | |
21 | data.setCell(0, 1, 1); | |
22 | data.setCell(0, 2, 7); | |
23 | data.setCell(1, 0, new Date("2009/07/08")); | |
24 | data.setCell(1, 1, 2); | |
25 | data.setCell(1, 2, 4); | |
26 | data.setCell(2, 0, new Date("2009/07/15")); | |
27 | data.setCell(2, 1, 3); | |
28 | data.setCell(2, 2, 3); | |
29 | data.setCell(3, 0, new Date("2009/07/22")); | |
30 | data.setCell(3, 1, 4); | |
31 | data.setCell(3, 2, 0); | |
32 | ||
33 | new google.visualization.LineChart( | |
540d00f1 | 34 | document.getElementById('gviz')).draw(data, null); |
79420a1e | 35 | |
285a6bda | 36 | new Dygraph.GVizChart( |
3e3f84e4 | 37 | document.getElementById('dygraphs')).draw(data, { |
3e3f84e4 | 38 | }); |
79420a1e DV |
39 | } |
40 | google.setOnLoadCallback(drawVisualization); | |
41 | </script> | |
42 | </head> | |
43 | <body> | |
44 | <p>gviz line chart:</p> | |
45 | <div id="gviz" style="width:600px; height:300px;"></div> | |
46 | ||
47 | <p>same data drawn using dygraphs:</p> | |
48 | <div id="dygraphs" style="width:600px; height:300px;"></div> | |
49 | </body> | |
50 | </html> |