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>
13 <p>1: Simple line chart:
</p>
14 <div id=
"graphdiv1"></div>
15 <script type=
"text/javascript">
16 g1 = new Dygraph(document.getElementById(
"graphdiv1"),
17 "Date,Temperature\n" +
25 <p>2: Simple step chart:
</p>
26 <div id=
"graphdiv2"></div>
27 <script type=
"text/javascript">
28 g2 = new Dygraph(document.getElementById(
"graphdiv2"),
29 "Date,Temperature\n" +
40 <p>3: Filled step chart:
</p>
41 <div id=
"graphdiv3"></div>
42 <script type=
"text/javascript">
43 g3 = new Dygraph(document.getElementById(
"graphdiv3"),
44 "Date,Temperature\n" +
56 <p>4: Line chart with error bars:
</p>
57 <div id=
"graphdiv4"></div>
58 <script type=
"text/javascript">
59 g4 = new Dygraph(document.getElementById(
"graphdiv4"),
74 <p>5: Step chart with error bars:
</p>
75 <div id=
"graphdiv5"></div>
76 <script type=
"text/javascript">
77 g5 = new Dygraph(document.getElementById(
"graphdiv5"),
93 <p>6: Stepped chart with gaps from CSV:
</p>
94 <div id=
"graphdiv6"></div>
95 <script type=
"text/javascript">
97 document.getElementById(
"graphdiv6"),
98 "Date,GapSeries1,GapSeries2\n" +
99 "2009/12/01,10,10\n" +
100 "2009/12/02,15,11\n" +
104 "2009/12/06,18,15\n" +
105 "2009/12/07,12,16\n",
112 <p>7: Stepped chart with gaps from native data:
</p>
113 <div id=
"graphdiv7"></div>
114 <script type=
"text/javascript">
116 document.getElementById(
"graphdiv7"),
118 [ new Date(
"2009/12/01"),
10,
10],
119 [ new Date(
"2009/12/02"),
15,
11],
120 [ new Date(
"2009/12/03"), null,
12],
121 [ new Date(
"2009/12/04"), null,
13],
122 [ new Date(
"2009/12/05"),
15, null],
123 [ new Date(
"2009/12/06"),
18,
15],
124 [ new Date(
"2009/12/07"),
12,
16]
127 labels: [
"Date",
"GapSeries1",
"GapSeries2"],