From e4182459889d71f9c69157d71ca042f194b4c58f Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Mon, 9 May 2011 13:25:10 -0400 Subject: [PATCH] linear/log toggle with customBars now works perfectly --- dygraph-canvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dygraph-canvas.js b/dygraph-canvas.js index 471d9e4..c5eb835 100644 --- a/dygraph-canvas.js +++ b/dygraph-canvas.js @@ -852,7 +852,7 @@ DygraphCanvasRenderer.prototype._renderLineChart = function() { // TODO(danvk): use this.attr_ for many of these. var context = this.elementContext; var fillAlpha = this.attr_('fillAlpha'); - var errorBars = this.attr_("errorBars"); + var errorBars = this.attr_("errorBars") || this.attr_("customBars"); var fillGraph = this.attr_("fillGraph"); var stackedGraph = this.attr_("stackedGraph"); var stepPlot = this.attr_("stepPlot"); -- 2.7.4