X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=gallery%2Fper-series.js;h=425043c576b0bdca9de44897f41bcc75ce4392be;hb=64f1c4dfd7425931fcd1bd9949157c0ba6958656;hp=49599644a58d897d97cb86437a1ecf6aae0ae57c;hpb=e26b71566419e1c051f3fbd1f4f8f64b063a04c9;p=dygraphs.git diff --git a/gallery/per-series.js b/gallery/per-series.js index 4959964..425043c 100644 --- a/gallery/per-series.js +++ b/gallery/per-series.js @@ -1,3 +1,4 @@ +/*global Gallery,Dygraph,data */ Gallery.register( 'per-series', { @@ -7,7 +8,7 @@ Gallery.register( parent.innerHTML = "
"; }, run: function() { - g = new Dygraph( + new Dygraph( document.getElementById("demodiv"), function() { var zp = function(x) { if (x < 10) return "0"+x; else return x; }; @@ -24,20 +25,22 @@ Gallery.register( }, { strokeWidth: 2, - 'parabola': { - strokeWidth: 0.0, - drawPoints: true, - pointSize: 4, - highlightCircleSize: 6 - }, - 'line': { - strokeWidth: 1.0, - drawPoints: true, - pointSize: 1.5 - }, - 'sine wave': { - strokeWidth: 3, - highlightCircleSize: 10 + series: { + 'parabola': { + strokeWidth: 0.0, + drawPoints: true, + pointSize: 4, + highlightCircleSize: 6 + }, + 'line': { + strokeWidth: 1.0, + drawPoints: true, + pointSize: 1.5 + }, + 'sine wave': { + strokeWidth: 3, + highlightCircleSize: 10 + } } } );