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: test/plot-schema.json
+26-4Lines changed: 26 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22082,14 +22082,36 @@
22082
22082
"min": 0,
22083
22083
"valType": "number"
22084
22084
},
22085
-
"scale": {
22086
-
"description": "Scales size of the arrows (ideally to avoid overlap). Default = 0.1",
22087
-
"dflt": 0.1,
22085
+
"sizemode": {
22086
+
"description": "Determines whether `sizeref` is set as a *scaled* (unitless) scalar (normalized by the max u/v norm in the vector field), as an *absolute* value (in the same units as the vector field), or *raw* to use the raw vector lengths.",
22087
+
"dflt": "scaled",
22088
+
"editType": "calc",
22089
+
"valType": "enumerated",
22090
+
"values": [
22091
+
"scaled",
22092
+
"absolute",
22093
+
"raw"
22094
+
]
22095
+
},
22096
+
"sizeref": {
22097
+
"description": "Adjusts the arrow size scaling. The arrow length is determined by the vector norm multiplied by `sizeref`, optionally normalized when `sizemode` is *scaled*.",
22088
22098
"editType": "calc",
22089
-
"max": 1,
22090
22099
"min": 0,
22091
22100
"valType": "number"
22092
22101
},
22102
+
"anchor": {
22103
+
"description": "Sets the arrows' anchor with respect to their (x,y) positions. Use *tail* to place (x,y) at the base, *tip* to place (x,y) at the head, or *cm*/*center*/*middle* to center the arrow on (x,y).",
22104
+
"dflt": "tail",
22105
+
"editType": "calc",
22106
+
"valType": "enumerated",
22107
+
"values": [
22108
+
"tip",
22109
+
"tail",
22110
+
"cm",
22111
+
"center",
22112
+
"middle"
22113
+
]
22114
+
},
22093
22115
"scaleratio": {
22094
22116
"description": "The ratio between the scale of the y-axis and the scale of the x-axis (scale_y / scale_x). Default = null, the scale ratio is not fixed.",
0 commit comments