X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=experimental%2Fpalette%2Fsamples.js;h=aa84c39da42da10c8d0c7e85e52996893ffafef0;hb=2323945cebe74e7ca1f3897fcb5e7a5aed5fc80f;hp=ef4fbbf7ae327fecceb41708fe900ef1aa7ccfda;hpb=795b16307db2a673ba7aa3452f6f6b0e93baeb3a;p=dygraphs.git 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 + } + } + } } ];