4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
10 For production (minified) code, use:
11 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
13 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
17 <p>1: Simple line chart:
</p>
18 <div id=
"graphdiv1"></div>
19 <script type=
"text/javascript">
20 g1 = new Dygraph(document.getElementById(
"graphdiv1"),
21 "Date,Temperature\n" +
29 <p>2: Simple step chart:
</p>
30 <div id=
"graphdiv2"></div>
31 <script type=
"text/javascript">
32 g2 = new Dygraph(document.getElementById(
"graphdiv2"),
33 "Date,Temperature\n" +
44 <p>3: Filled step chart:
</p>
45 <div id=
"graphdiv3"></div>
46 <script type=
"text/javascript">
47 g3 = new Dygraph(document.getElementById(
"graphdiv3"),
48 "Date,Temperature\n" +
60 <p>4: Line chart with error bars:
</p>
61 <div id=
"graphdiv4"></div>
62 <script type=
"text/javascript">
63 g4 = new Dygraph(document.getElementById(
"graphdiv4"),
78 <p>5: Step chart with error bars:
</p>
79 <div id=
"graphdiv5"></div>
80 <script type=
"text/javascript">
81 g5 = new Dygraph(document.getElementById(
"graphdiv5"),
97 <p>6: Stepped chart with gaps from CSV:
</p>
98 <div id=
"graphdiv6"></div>
99 <script type=
"text/javascript">
101 document.getElementById(
"graphdiv6"),
102 "Date,GapSeries1,GapSeries2\n" +
103 "2009/12/01,10,10\n" +
104 "2009/12/02,15,11\n" +
108 "2009/12/06,18,15\n" +
109 "2009/12/07,12,16\n",
116 <p>7: Stepped chart with gaps from native data:
</p>
117 <div id=
"graphdiv7"></div>
118 <script type=
"text/javascript">
120 document.getElementById(
"graphdiv7"),
122 [ new Date(
"2009/12/01"),
10,
10],
123 [ new Date(
"2009/12/02"),
15,
11],
124 [ new Date(
"2009/12/03"), null,
12],
125 [ new Date(
"2009/12/04"), null,
13],
126 [ new Date(
"2009/12/05"),
15, null],
127 [ new Date(
"2009/12/06"),
18,
15],
128 [ new Date(
"2009/12/07"),
12,
16]
131 labels: [
"Date",
"GapSeries1",
"GapSeries2"],
134 GapSeries2: { axis: {} }
139 <p>8: Stacked filled step chart:
</p>
140 <div id=
"graphdiv8"></div>
141 <script type=
"text/javascript">
142 g8 = new Dygraph(document.getElementById(
"graphdiv8"),
144 "2008-05-07,70,30\n" +
145 "2008-05-08,12,88\n" +
146 "2008-05-09,88,12\n" +
147 "2008-05-10,63,37\n" +
148 "2008-05-11,35,65\n",