UNPKG

dcos-dygraphs

Version:

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

38 lines (35 loc) 1.14 kB
<!DOCTYPE html> <html> <head> <title>custom bars</title> <!-- For production (minified) code, use: <script type="text/javascript" src="dygraph-combined.js"></script> --> <script type="text/javascript" src="../dist/dygraph.js"></script> <script type="text/javascript" src="data.js"></script> </head> <body> <p>Top and bottom of the bars stay mostly fixed while the middle varies.</p> <div id="graph"></div> <script type="text/javascript"> var g = new Dygraph(document.getElementById("graph"), [ [1, [10, 10, 100]], [2, [15, 20, 110]], [3, [10, 30, 100]], [4, [15, 40, 110]], [5, [10, 120, 100]], [6, [15, 50, 110]], [7, [10, 70, 100]], [8, [15, 90, 110]], [9, [10, 50, 100]] ], { customBars: true, errorBars: true, labels: ['X', 'Y'] } ); </script> </body> </html>