X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Flinear-regression-addseries.html;h=2efffb14ae0d25703f474713bdc8e6a62e95e059;hb=cf61aeb77cda5e2638b1f00588dcd90394afd24c;hp=3fd3a85c01f3a507b8e4870363d9d4d2c1cbfa60;hpb=3a8dc464e8e7b197d7df18220ab2ad189ff95841;p=dygraphs.git diff --git a/tests/linear-regression-addseries.html b/tests/linear-regression-addseries.html index 3fd3a85..2efffb1 100644 --- a/tests/linear-regression-addseries.html +++ b/tests/linear-regression-addseries.html @@ -1,13 +1,14 @@ + + Linear Regression - - - - - + + + @@ -84,6 +85,10 @@ updateChart(); } + function toHex(rgb) { + return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')'; + } + function updateChart() { // Generate a new data set with the regression lines. var new_labels = []; @@ -96,11 +101,11 @@ // Darken the series by 50% to generate its regression. var label = labels[i] + " Regression"; new_labels.push(label); - var c = new RGBColor(orig_colors[i - 1]); + var c = Dygraph.toRGB_(orig_colors[i - 1]); c.r = Math.floor(255 - 0.5 * (255 - c.r)); c.g = Math.floor(255 - 0.5 * (255 - c.g)); c.b = Math.floor(255 - 0.5 * (255 - c.b)); - new_colors.push(c.toHex()); + new_colors.push(toHex(c)); new_opts[label] = { drawPoints: false, strokeWidth: 1.0