From 17a21cc0f483eef85a9a2cc91d5257347c3535d9 Mon Sep 17 00:00:00 2001 From: Robin Hu Date: Wed, 14 Aug 2013 17:06:44 -0400 Subject: [PATCH] Found an issue when using transition().duration() with axis. It was causing a certain kind of 'flickering' with historicalBars. Removing that usage for now. --- src/models/axis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/axis.js b/src/models/axis.js index 8b29b15..e16da2c 100644 --- a/src/models/axis.js +++ b/src/models/axis.js @@ -65,7 +65,7 @@ nv.models.axis = function() { //TODO: consider calculating width/height based on whether or not label is added, for reference in charts using this component - g.transition().duration(transitionDuration).call(axis); + g.transition().call(axis); scale0 = scale0 || axis.scale();