4 <link rel=
"stylesheet" href=
"../css/dygraph.css">
5 <title>no range
</title>
7 For production (minified) code, use:
8 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
10 <script type=
"text/javascript" src=
"../dist/dygraph.js"></script>
14 <p>There should be an appropriate amount of padding at the top of the chart:
</p>
17 <script type=
"text/javascript">
21 return
"date," + label +
"\n20091206,2659329.631743\n20091213,2772361.123362\n20091220,2737584.647191\n20091227,2720000.550414\n20100103,2910306.897977\n20100110,2901385.313093\n20100117,2903041.312099\n20100124,2966455.128911\n";
24 var g1 = new Dygraph(document.getElementById(
"blah"),
34 <p>The second series (which is entirely zero) should be visible, and the
35 y-axis should go down to zero.
</p>
36 <div id=
"blah2"></div>
37 <script type=
"text/javascript">
39 [
"2006-10-11",
0,
15228],
40 [
"2006-10-12",
0,
15219],
41 [
"2006-10-13",
0,
15225],
42 [
"2006-10-14",
0,
15212],
43 [
"2006-10-15",
0,
15211],
44 [
"2006-10-16",
0,
15322],
45 [
"2006-10-17",
0,
15414],
46 [
"2006-10-18",
0,
15422],
47 [
"2006-10-19",
0,
15434],
48 [
"2006-10-20",
0,
15423]
51 for (var i =
0; i < data.length; i++) {
52 str += data[i].join(
",") +
"\n";
55 var g2 = new Dygraph(document.getElementById(
"blah2"),
57 { labels: [
"date",
"zero",
"non-zero" ] });