Polar Type
Static members
Static member | Description |
Full Usage:
Polar.getAngularAxis polar
Parameters:
Polar
-
The polar object to get the AngularAxis from
Returns: AngularAxis
|
|
Full Usage:
Polar.getRadialAxis polar
Parameters:
Polar
-
The polar object to get the RadialAxis from
Returns: RadialAxis
|
|
Full Usage:
Polar.init (?Domain, ?Sector, ?Hole, ?BGColor, ?RadialAxis, ?AngularAxis, ?GridShape, ?UIRevision)
Parameters:
Domain
-
Sets the domain of this polar subplot
?Sector : float * float
-
Sets angular span of this polar subplot with two angles (in degrees). Sector are assumed to be spanned in the counterclockwise direction with "0" corresponding to rightmost limit of the polar subplot.
?Hole : float
-
Sets the fraction of the radius to cut out of the polar subplot.
?BGColor : Color
-
Set the background color of the subplot
?RadialAxis : RadialAxis
-
Sets the radial axis of the polar subplot.
?AngularAxis : AngularAxis
-
Sets the angular axis of the polar subplot.
?GridShape : PolarGridShape
-
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).
?UIRevision : string
-
Controls persistence of user-driven changes in axis attributes, if not overridden in the individual axes. Defaults to `layout.uirevision`.
Returns: Polar
|
|
Full Usage:
Polar.setAngularAxis angularAxis
Parameters:
AngularAxis
-
The new AngularAxis object
Returns: Polar -> Polar
|
|
Full Usage:
Polar.setRadialAxis radialAxis
Parameters:
RadialAxis
-
The new RadialAxis object
Returns: Polar -> Polar
|
|
Full Usage:
Polar.style (?Domain, ?Sector, ?Hole, ?BGColor, ?RadialAxis, ?AngularAxis, ?GridShape, ?UIRevision, ?BarMode, ?BarGap)
Parameters:
Domain
-
Sets the domain of this polar subplot
?Sector : float * float
-
Sets angular span of this polar subplot with two angles (in degrees). Sector are assumed to be spanned in the counterclockwise direction with "0" corresponding to rightmost limit of the polar subplot.
?Hole : float
-
Sets the fraction of the radius to cut out of the polar subplot.
?BGColor : Color
-
Set the background color of the subplot
?RadialAxis : RadialAxis
-
Sets the radial axis of the polar subplot.
?AngularAxis : AngularAxis
-
Sets the angular axis of the polar subplot.
?GridShape : PolarGridShape
-
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).
?UIRevision : string
-
Controls persistence of user-driven changes in axis attributes, if not overridden in the individual axes. Defaults to `layout.uirevision`.
?BarMode : 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.
?BarGap : float
-
Sets the gap (in plot fraction) between bars of adjacent location coordinates.
Returns: Polar -> Polar
|
|
Full Usage:
Polar.tryGetTypedMember propName polar
Parameters:
string
-
The name of the dynamic member to get the value of
polar : Polar
-
The object to get the dynamic member value from
Returns: 'T option
|
|