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
@@ -79618,14 +79618,36 @@
79618
79618
"min": 0,
79619
79619
"valType": "number"
79620
79620
},
79621
-
"scale": {
79622
-
"description": "Scales size of the arrows (ideally to avoid overlap). Default = 0.1",
79623
-
"dflt": 0.1,
79621
+
"sizemode": {
79622
+
"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.",
79623
+
"dflt": "scaled",
79624
+
"editType": "calc",
79625
+
"valType": "enumerated",
79626
+
"values": [
79627
+
"scaled",
79628
+
"absolute",
79629
+
"raw"
79630
+
]
79631
+
},
79632
+
"sizeref": {
79633
+
"description": "Adjusts the arrow size scaling. The arrow length is determined by the vector norm multiplied by `sizeref`, optionally normalized when `sizemode` is *scaled*.",
79624
79634
"editType": "calc",
79625
-
"max": 1,
79626
79635
"min": 0,
79627
79636
"valType": "number"
79628
79637
},
79638
+
"anchor": {
79639
+
"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).",
79640
+
"dflt": "tail",
79641
+
"editType": "calc",
79642
+
"valType": "enumerated",
79643
+
"values": [
79644
+
"tip",
79645
+
"tail",
79646
+
"cm",
79647
+
"center",
79648
+
"middle"
79649
+
]
79650
+
},
79629
79651
"scaleratio": {
79630
79652
"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