Skip to content

Commit 2c6a50f

Browse files
committed
Update some changes to default schema.
1 parent 887d839 commit 2c6a50f

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

plotly/package_data/default-schema.json

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9136,7 +9136,7 @@
91369136
]
91379137
},
91389138
"end": {
9139-
"description": "Sets the end contour level value.",
9139+
"description": "Sets the end contour level value. Must be more than `contours.start`",
91409140
"dflt": null,
91419141
"role": "style",
91429142
"valType": "number"
@@ -9149,13 +9149,14 @@
91499149
"valType": "boolean"
91509150
},
91519151
"size": {
9152-
"description": "Sets the step between each contour level.",
9152+
"description": "Sets the step between each contour level. Must be positive.",
91539153
"dflt": null,
9154+
"min": 0,
91549155
"role": "style",
91559156
"valType": "number"
91569157
},
91579158
"start": {
9158-
"description": "Sets the starting contour level value.",
9159+
"description": "Sets the starting contour level value. Must be less than `contours.end`",
91599160
"dflt": null,
91609161
"role": "style",
91619162
"valType": "number"
@@ -9240,8 +9241,9 @@
92409241
"valType": "string"
92419242
},
92429243
"ncontours": {
9243-
"description": "Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is *true*.",
9244-
"dflt": 0,
9244+
"description": "Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is *true* or if `contours.size` is missing.",
9245+
"dflt": 15,
9246+
"min": 1,
92459247
"role": "style",
92469248
"valType": "integer"
92479249
},
@@ -12754,7 +12756,7 @@
1275412756
]
1275512757
},
1275612758
"end": {
12757-
"description": "Sets the end contour level value.",
12759+
"description": "Sets the end contour level value. Must be more than `contours.start`",
1275812760
"dflt": null,
1275912761
"role": "style",
1276012762
"valType": "number"
@@ -12767,13 +12769,14 @@
1276712769
"valType": "boolean"
1276812770
},
1276912771
"size": {
12770-
"description": "Sets the step between each contour level.",
12772+
"description": "Sets the step between each contour level. Must be positive.",
1277112773
"dflt": null,
12774+
"min": 0,
1277212775
"role": "style",
1277312776
"valType": "number"
1277412777
},
1277512778
"start": {
12776-
"description": "Sets the starting contour level value.",
12779+
"description": "Sets the starting contour level value. Must be less than `contours.end`",
1277712780
"dflt": null,
1277812781
"role": "style",
1277912782
"valType": "number"
@@ -12899,8 +12902,9 @@
1289912902
"valType": "integer"
1290012903
},
1290112904
"ncontours": {
12902-
"description": "Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is *true*.",
12903-
"dflt": 0,
12905+
"description": "Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is *true* or if `contours.size` is missing.",
12906+
"dflt": 15,
12907+
"min": 1,
1290412908
"role": "style",
1290512909
"valType": "integer"
1290612910
},

0 commit comments

Comments
 (0)