From: Robert Konigsberg Date: Fri, 28 Dec 2012 23:10:54 +0000 (-0500) Subject: Restore funny format; add comment to indicate why it's formatted funny. X-Git-Tag: v1.0.0~139^2~11 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=059bc225c8ff6920eb1d0cc3c721b1c4cde4180e;p=dygraphs.git Restore funny format; add comment to indicate why it's formatted funny. --- diff --git a/experimental/palette/samples.js b/experimental/palette/samples.js index ef4fbbf..aa84c39 100644 --- a/experimental/palette/samples.js +++ b/experimental/palette/samples.js @@ -61,9 +61,11 @@ Samples.data = [ ylabel: 'Count', axisLineColor: 'white', drawXGrid: false, + +// This indentation is intentional; do not fix. pointClickCallback: function() { alert("p-click!"); -}, +} } }, @@ -135,6 +137,50 @@ Samples.data = [ customBars: true, errorBars: true } + }, + + { + id: "perSeries", + title: "Per Series Options", + data: function() { + var zp = function(x) { if (x < 10) return "0"+x; else return x; }; + var r = "date,parabola,line,another line,sine wave,sine wave2\n"; + for (var i=1; i<=31; i++) { + r += "200610" + zp(i); + r += "," + 10*(i*(31-i)); + r += "," + 10*(8*i); + r += "," + 10*(250 - 8*i); + r += "," + 10*(125 + 125 * Math.sin(0.3*i)); + r += "," + 10*(125 + 125 * Math.sin(0.3*i+Math.PI)); + r += "\n"; + } + return r; + }, + options: { + strokeWidth: 2, + 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 + }, + 'sine wave2': { + strokePattern: [10, 2, 5, 2], + strokeWidth: 2, + highlightCircleSize: 3 + } + } + } } ];