You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: dist/plot-schema.json
+14-15
Original file line number
Diff line number
Diff line change
@@ -479,7 +479,7 @@
479
479
"requiredOpts": []
480
480
},
481
481
"data_array": {
482
-
"description": "An {array} of data. The value MUST be an {array}, or we ignore it. Note that typed arrays (e.g. Float32Array) are supported.",
482
+
"description": "An {array} of data. The value must represent an {array} or it will be ignored, but this array can be provided in several forms: (1) a regular {array} object (2) a typed array (e.g. Float32Array) (3) an object with keys dtype, bdata, and optionally shape. In this 3rd form, dtype is one of *f8*, *f4*. *i4*, *u4*, *i2*, *u2*, *i1*, *u1* or *u1c* for Uint8ClampedArray. In addition to shorthand `dtype` above one could also use the following forms: *float64*, *float32*, *int32*, *uint32*, *int16*, *uint16*, *int8*, *uint8* or *uint8c* for Uint8ClampedArray. `bdata` is either a base64-encoded string or the ArrayBuffer of an integer or float typed array. For either multi-dimensional arrays you must also provide its dimensions separated by comma via `shape`. For example using `dtype`: *f4* and `shape`: *5,100* you can declare a 2-D array that has 5 rows and 100 columns containing float32 values i.e. 4 bits per value. `shape` is optional for one dimensional arrays.",
483
483
"otherOpts": [
484
484
"dflt"
485
485
],
@@ -17275,7 +17275,7 @@
17275
17275
"role": "object"
17276
17276
},
17277
17277
"upperfence": {
17278
-
"description": "Sets the upper fence values. There should be as many items as the number of boxes desired. This attribute has effect only under the q1/median/q3 signature. If `upperfence` is not provided but a sample (in `y` or `x`) is set, we compute the lower as the last sample point above 1.5 times the IQR.",
17278
+
"description": "Sets the upper fence values. There should be as many items as the number of boxes desired. This attribute has effect only under the q1/median/q3 signature. If `upperfence` is not provided but a sample (in `y` or `x`) is set, we compute the upper as the last sample point above 1.5 times the IQR.",
17279
17279
"editType": "calc",
17280
17280
"valType": "data_array"
17281
17281
},
@@ -44358,6 +44358,18 @@
44358
44358
"valType": "string"
44359
44359
},
44360
44360
"node": {
44361
+
"align": {
44362
+
"description": "Sets the alignment method used to position the nodes along the horizontal axis.",
44363
+
"dflt": "justify",
44364
+
"editType": "calc",
44365
+
"valType": "enumerated",
44366
+
"values": [
44367
+
"justify",
44368
+
"left",
44369
+
"right",
44370
+
"center"
44371
+
]
44372
+
},
44361
44373
"color": {
44362
44374
"arrayOk": true,
44363
44375
"description": "Sets the `node` color. It can be a single value, or an array for specifying color for each `node`. If `node.color` is omitted, then the default `Plotly` color palette will be cycled through to have a variety of colors. These defaults are not fully opaque, to allow some visibility of what is beneath the node.",
@@ -58874,19 +58886,6 @@
58874
58886
},
58875
58887
"editType": "calc",
58876
58888
"role": "object",
58877
-
"shape": {
58878
-
"description": "Determines the line shape. The values correspond to step-wise line shapes.",
0 commit comments