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