UNPKG

dcos-dygraphs

Version:

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

16 lines (15 loc) 368 B
// Use this as a template for new Gallery entries. /*global Gallery,Dygraph,data */ Gallery.register( 'id', { name: 'name', title: 'title', setup: function(parent) { parent.innerHTML = "<div id='blah'>"; }, run: function() { new Dygraph(document.getElementById("blah"), "X,Y\n10,12345\n11,12345\n", {}); } });