3 <title>out of order
</title>
5 <script type=
"text/javascript" src=
"../excanvas.js"></script>
7 <script type=
"text/javascript" src=
"../strftime/strftime-min.js"></script>
8 <script type=
"text/javascript" src=
"../rgbcolor/rgbcolor.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph-canvas.js"></script>
10 <script type=
"text/javascript" src=
"../dygraph.js"></script>
11 <script type=
"text/javascript" src=
"http://www.google.com/jsapi"></script>
12 <script type=
"text/javascript">
13 google.load('visualization', '
1');
15 function createDataTable(dateType) {
16 data = new google.visualization.DataTable();
17 data.addColumn(dateType, 'Date');
18 data.addColumn('number', 'Column A');
19 data.addColumn('number', 'Column B');
21 data.setCell(
0,
0, new Date(
"2009/07/15"));
22 data.setCell(
0,
1,
3);
23 data.setCell(
0,
2,
3);
24 data.setCell(
1,
0, new Date(
"2009/07/22"));
25 data.setCell(
1,
1,
4);
26 data.setCell(
1,
2,
0);
27 data.setCell(
2,
0, new Date(
"2009/07/08"));
28 data.setCell(
2,
1,
2);
29 data.setCell(
2,
2,
4);
30 data.setCell(
3,
0, new Date(
"2009/07/01"));
31 data.setCell(
3,
1,
1);
32 data.setCell(
3,
2,
7);
37 "Date,Column A,Column B\n" +
43 function drawVisualization() {
44 data = createDataTable('date');
46 new Dygraph.GVizChart(
47 document.getElementById('dygraphs_gviz')).draw(data, {
50 new Dygraph(document.getElementById('dygraphs'), csv);
53 google.setOnLoadCallback(drawVisualization);
57 <p>CSV data source out of order:
</p>
58 <div id=
"dygraphs" style=
"width:600px; height:300px;"></div>
60 <p>gviz data source out of order:
</p>
61 <div id=
"dygraphs_gviz" style=
"width:600px; height:300px;"></div>