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
@@ -22050,14 +22050,36 @@
22050
22050
"min": 0,
22051
22051
"valType": "number"
22052
22052
},
22053
-
"scale": {
22054
-
"description": "Scales size of the arrows (ideally to avoid overlap). Default = 0.1",
22055
-
"dflt": 0.1,
22053
+
"sizemode": {
22054
+
"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.",
22055
+
"dflt": "scaled",
22056
+
"editType": "calc",
22057
+
"valType": "enumerated",
22058
+
"values": [
22059
+
"scaled",
22060
+
"absolute",
22061
+
"raw"
22062
+
]
22063
+
},
22064
+
"sizeref": {
22065
+
"description": "Adjusts the arrow size scaling. The arrow length is determined by the vector norm multiplied by `sizeref`, optionally normalized when `sizemode` is *scaled*.",
22056
22066
"editType": "calc",
22057
-
"max": 1,
22058
22067
"min": 0,
22059
22068
"valType": "number"
22060
22069
},
22070
+
"anchor": {
22071
+
"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).",
22072
+
"dflt": "tail",
22073
+
"editType": "calc",
22074
+
"valType": "enumerated",
22075
+
"values": [
22076
+
"tip",
22077
+
"tail",
22078
+
"cm",
22079
+
"center",
22080
+
"middle"
22081
+
]
22082
+
},
22061
22083
"scaleratio": {
22062
22084
"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