Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions src/traces/box/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ module.exports = {
boxpoints: {
valType: 'enumerated',
values: ['all', 'outliers', 'suspectedoutliers', false],
dflt: 'outliers',
role: 'style',
editType: 'calc',
description: [
Expand All @@ -106,7 +105,10 @@ module.exports = {
'points either less than 4*Q1-3*Q3 or greater than 4*Q3-3*Q1',
'are highlighted (see `outliercolor`)',
'If *all*, all sample points are shown',
'If *false*, only the box(es) are shown with no sample points'
'If *false*, only the box(es) are shown with no sample points',
'Defaults to *suspectedoutliers* when `marker.outliercolor` or',
'`marker.line.outliercolor` is set,',
'otherwise defaults to *outliers*.'
].join(' ')
},
jitter: {
Expand Down
5 changes: 4 additions & 1 deletion src/traces/violin/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ module.exports = {
'points either less than 4*Q1-3*Q3 or greater than 4*Q3-3*Q1',
'are highlighted (see `outliercolor`)',
'If *all*, all sample points are shown',
'If *false*, only the violins are shown with no sample points'
'If *false*, only the violins are shown with no sample points',
'Defaults to *suspectedoutliers* when `marker.outliercolor` or',
'`marker.line.outliercolor` is set,',
'otherwise defaults to *outliers*.'
].join(' ')
}),
jitter: extendFlat({}, boxAttrs.jitter, {
Expand Down