AGPolarRAxis / AGPolarTAxis


Synopsis

define a numerical polar axis

AGPolarAxis+AGAxisParams+AGTickRParams AGPolarRAxis
{
AGInt labelDecimals;
AGLabelModeEnum labelMode = "right";
AGInt labelPowerFactor;
AGFloat positionT;
AGString text = "R axis";
};
AGPolarAxis+AGAxisParams+AGTickTParams AGPolarTAxis

AGInt labelDecimals;
AGLabelModeEnum labelMode = "right";
AGInt labelPowerFactor;
AGFloat positionR;
AGString text = "T axis";
};

Description

AGPolarRAxis and AGPolarTAxis define numerical polar axes that can connect to any of the AGPolarWorld objects.

Subobjects

labelDecimals

Determines the number of positions to the left of the label's decimal point. The label's power factor is adjusted accordingly. The default is computed based on the limits (in other words, data range).

labelMode

A string that determines which side of the axis to draw the labels. Valid strings are "right" and "left" seen from the start of the axis. The default value is "right".

labelPowerFactor

The power to which the label values are raised. The default is computed based on the limits (in other words, data range).

positionR
positionT

The R or T position of the axel line. AGPolarRAxis has the positionT parameter. AGPolarTAxis has the positionR parameter.

text

A text string used as a label for the axis.

visibility
priority

Inherited from AGPrimitive.

majorTickColor
majorTickLineStyle
majorTickOn
majorTickWidth
minorTickColor
minorTickCount
minorTickLineStyle
minorTickWidth

Inherited from AGTickParams through AGAxisParams.

axleColor
axleWidth
labelColor
labelFont
labelHeight

Inherited from AGAxisParams.

majorReferenceR
majorStepR

Inherited from AGTickRParams.

majorReferenceT
majorStepT

Inherited from AGTickTParams.

Examples

Libraries.Examples.Annotation_Graphing.polar
examples/polar

File

v/ag.v

See Also

Related Modules

•      AGAxisParams

•      AGPrimitive

•      AGTickParams

•      AGTickRParams / AGTickTParams