Skip to content
Merged
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
1 change: 1 addition & 0 deletions src/traces/box/plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ function plotBoxAndWhiskers(sel, axes, trace, t) {

var fn;
if(trace.type === 'box' ||
trace.type === 'candlestick' ||
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps trace.type !== 'violin' || trace.box? NBD either way, we'd of course figure it out pretty quick if we add any other trace type that reuses box drawing.

(trace.type === 'violin' && (trace.box || {}).visible)
) {
fn = Lib.identity;
Expand Down