Skip to content

Commit 97190c3

Browse files
committed
revision to only display bars not histograms
1 parent cc5ce23 commit 97190c3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/traces/bar/plot.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ module.exports = function plot(gd, plotinfo, cdModule, traceLayer, opts) {
6868
var plotGroup = d3.select(this);
6969
var trace = cd[0].trace;
7070
var isWaterfall = (trace.type === 'waterfall');
71-
var isFunnel = (trace.type === 'funnel');
72-
var isBar = !(isWaterfall || isFunnel);
71+
var isBar = (trace.type === 'bar');
7372

7473
var adjustPixel = 0;
7574
if(isWaterfall && trace.connector.visible && trace.connector.mode === 'between') {

0 commit comments

Comments
 (0)