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: src/Plotly.NET/Polar.fs
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,8 @@ type Polar () =
49
49
/// <param name="AngularAxis">Sets the angular axis of the polar subplot.</param>
50
50
/// <param name="GridShape">Determines if the radial axis grid lines and angular axis line are drawn as "circular" sectors or as "linear" (polygon) sectors. Has an effect only when the angular axis has `type` "category". Note that `radialaxis.angle` is snapped to the angle of the closest vertex when `gridshape` is "circular" (so that radial axis scale is the same as the data scale).</param>
51
51
/// <param name="UIRevision">Controls persistence of user-driven changes in axis attributes, if not overridden in the individual axes. Defaults to `layout.uirevision`.</param>
52
+
/// <param name="BarMode">Determines how bars at the same location coordinate are displayed on the graph. With "stack", the bars are stacked on top of one another With "relative", the bars are stacked on top of one another, with negative values below the axis, positive values above With "group", the bars are plotted next to one another centered around the shared location. With "overlay", the bars are plotted over one another, you might need to an "opacity" to see multiple bars.</param>
53
+
/// <param name="BarGap">Sets the gap (in plot fraction) between bars of adjacent location coordinates.</param>
52
54
static memberstyle
53
55
(
54
56
?Domain :Domain,
@@ -58,7 +60,11 @@ type Polar () =
58
60
?RadialAxis : Axis.RadialAxis,
59
61
?AngularAxis: Axis.AngularAxis,
60
62
?GridShape : StyleParam.PolarGridShape,
61
-
?UIRevision : string
63
+
?UIRevision : string,
64
+
//these are not documented in the official reference but seem to be the only way to make this work?!
0 commit comments