UNPKG

dcos-dygraphs

Version:

dygraphs is a fast, flexible open source JavaScript charting library.

81 lines (75 loc) 2.24 kB
<!DOCTYPE html> <html> <head> <title>dygraph</title> <!-- For production (minified) code, use: <script type="text/javascript" src="dygraph-combined.js"></script> --> <script type="text/javascript" src="../dist/dygraph.js"></script> </head> <body> <p>1: Line chart with axis at zero problem:</p> <div id="graph1"></div> <script type="text/javascript"> var g1 = new Dygraph(document.getElementById("graph1"), "Date,Temperature\n" + "2008-05-07,0\n" + "2008-05-08,1\n" + "2008-05-09,0\n" + "2008-05-10,0\n" + "2008-05-11,3\n" + "2008-05-12,4\n" ) </script> <p>2: Step chart with axis at zero problem:</p> <div id="graphd2"></div> <script type="text/javascript"> var g2 = new Dygraph(document.getElementById("graphd2"), "Date,Temperature\n" + "2008-05-07,0\n" + "2008-05-08,1\n" + "2008-05-09,0\n" + "2008-05-10,0\n" + "2008-05-11,3\n" + "2008-05-12,4\n", { stepPlot: true } ) </script> <p>3: Line chart with <code>avoidMinZero</code> option:</p> <div id="graph3"></div> <script type="text/javascript"> var g3 = new Dygraph(document.getElementById("graph3"), "Date,Temperature\n" + "2008-05-07,0\n" + "2008-05-08,1\n" + "2008-05-09,0\n" + "2008-05-10,0\n" + "2008-05-11,3\n" + "2008-05-12,4\n", { avoidMinZero: true } ) </script> <p>4: Step chart with <code>avoidMinZero</code> option:</p> <div id="graphd4"></div> <script type="text/javascript"> var g4 = new Dygraph(document.getElementById("graphd4"), "Date,Temperature\n" + "2008-05-07,0\n" + "2008-05-08,1\n" + "2008-05-09,0\n" + "2008-05-10,0\n" + "2008-05-11,3\n" + "2008-05-12,4\n", { stepPlot: true, avoidMinZero: true } ) </script> </body> </html>