Skip to content

Commit 3e1319e

Browse files
committed
Updating schema
1 parent b0868e5 commit 3e1319e

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

src/traces/box/attributes.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,6 @@ module.exports = {
250250
'If *true*, the mean of the box(es)\' underlying distribution is',
251251
'drawn as a dashed line inside the box(es).',
252252
'If *sd* the standard deviation is also drawn.',
253-
'If 1sigma the box is drawn between mean+-sigma, instead of median+-quartile',
254-
'1sigma, 2sigma, ... , 6sigma are availabe',
255253
'Defaults to *true* when `mean` is set.',
256254
'Defaults to *sd* when `sd` is set',
257255
'Otherwise defaults to *false*.'

test/plot-schema.json

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15607,18 +15607,12 @@
1560715607
"valType": "string"
1560815608
},
1560915609
"boxmean": {
15610-
"description": "If *true*, the mean of the box(es)' underlying distribution is drawn as a dashed line inside the box(es). If *sd* the standard deviation is also drawn. If 1sigma the box is drawn between mean+-sigma, instead of median+-quartile 1sigma, 2sigma, ... , 6sigma are availabe Defaults to *true* when `mean` is set. Defaults to *sd* when `sd` is set Otherwise defaults to *false*.",
15610+
"description": "If *true*, the mean of the box(es)' underlying distribution is drawn as a dashed line inside the box(es). If *sd* the standard deviation is also drawn. Defaults to *true* when `mean` is set. Defaults to *sd* when `sd` is set Otherwise defaults to *false*.",
1561115611
"editType": "calc",
1561215612
"valType": "enumerated",
1561315613
"values": [
1561415614
true,
1561515615
"sd",
15616-
"1sigma",
15617-
"2sigma",
15618-
"3sigma",
15619-
"4sigma",
15620-
"5sigma",
15621-
"6sigma",
1562215616
false
1562315617
]
1562415618
},
@@ -16600,6 +16594,13 @@
1660016594
"editType": "calc",
1660116595
"valType": "data_array"
1660216596
},
16597+
"sdmultiple": {
16598+
"description": "Scales the box size when sizemode=sd Allowing boxes to be drawn across any stddev range For example 1-stddev, 3-stddev, 5-stddev",
16599+
"dflt": 1,
16600+
"editType": "calc",
16601+
"min": 0,
16602+
"valType": "number"
16603+
},
1660316604
"sdsrc": {
1660416605
"description": "Sets the source reference on Chart Studio Cloud for `sd`.",
1660516606
"editType": "none",
@@ -16642,6 +16643,22 @@
1664216643
"editType": "style",
1664316644
"valType": "boolean"
1664416645
},
16646+
"showwhiskers": {
16647+
"description": "Determines whether or not whiskers are visible",
16648+
"dflt": true,
16649+
"editType": "calc",
16650+
"valType": "boolean"
16651+
},
16652+
"sizemode": {
16653+
"description": "Sets the upper and lower bound for the boxes quartiles means box is drawn between Q1 and Q3 SD means the box is drawn between Mean +- Standard Deviation Argument sdmultiple (default 1) to scale the box size So it could be drawn 1-stddev, 3-stddev etc",
16654+
"dflt": "quartiles",
16655+
"editType": "calc",
16656+
"valType": "enumerated",
16657+
"values": [
16658+
"quartiles",
16659+
"sd"
16660+
]
16661+
},
1664516662
"stream": {
1664616663
"editType": "calc",
1664716664
"maxpoints": {
@@ -16741,12 +16758,6 @@
1674116758
"legendonly"
1674216759
]
1674316760
},
16744-
"whiskerdisable": {
16745-
"description": "Determines whether or not whiskers are visible",
16746-
"dflt": false,
16747-
"editType": "calc",
16748-
"valType": "boolean"
16749-
},
1675016761
"whiskerwidth": {
1675116762
"description": "Sets the width of the whiskers relative to the box' width. For example, with 1, the whiskers are as wide as the box(es).",
1675216763
"dflt": 0.5,

0 commit comments

Comments
 (0)