Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rm unnecessary hasCartesian check
  • Loading branch information
etpinard committed Feb 19, 2016
commit 41a2a8d1193d8bb60a1b9c12bfdd045e7b79dc04
6 changes: 2 additions & 4 deletions src/plots/cartesian/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,8 @@ exports.plot = function(gd) {
}

// finally do all error bars at once
if(fullLayout._hasCartesian) {
ErrorBars.plot(gd, subplotInfo, cdError);
Lib.markTime('done ErrorBars');
}
ErrorBars.plot(gd, subplotInfo, cdError);
Lib.markTime('done ErrorBars');
}

// now draw stuff not on subplots (ie, only pies at the moment)
Expand Down