Child classes:
|
Inherited Variables
|
Inherited Methods
|
constructor CustomPolar [line 58]
CustomPolar CustomPolar(
[
$c = null])
|
|
Tags:
Parameters:
destructor __destruct [line 66]
method calcXPos [line 758]
int calcXPos(
valueIndex
$valueIndex)
|
|
Returns the pixel Screen Horizontal coordinate of the ValueIndex Series
value.
This coordinate is calculated using the Series associated Horizontal Axis.
Tags:
Overrides
Series::calcXPos() (The pixel Screen Horizontal coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Horizontal Axis.)
Parameters:
method calcYPos [line 770]
int calcYPos(
valueIndex
$valueIndex)
|
|
Returns the pixel Screen Vertical coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Vertical Axis.
Tags:
Overrides
Series::calcYPos() (The pixel Screen Vertical coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Vertical Axis.)
Parameters:
method clicked [line 113]
The ValueIndex of the "clicked" point in the Series.
Tags:
Overrides
Series::clicked() (Returns the ValueIndex of the "clicked" point in the Series.
Clicked means the X and Y coordinates are in the point screen region bounds. If no point is "touched", Clicked returns -1)
Parameters:
method clickedSegment [line 99]
void clickedSegment(
$p,
$tmp,
$old)
|
|
Tags:
Parameters:
method doAfterDrawValues [line 458]
method doBeforeDrawValues [line 496]
method draw [line 552]
method drawLegendShape [line 568]
void drawLegendShape(
$g,
$valueIndex,
$rect)
|
|
Tags:
Overrides
Series::drawLegendShape() (parent method not documented)
Parameters:
method drawMark [line 583]
void drawMark(
$valueIndex,
$s,
$position)
|
|
Tags:
Overrides
Series::drawMark() (parent method not documented)
Parameters:
method drawRing [line 806]
void drawRing(
$value,
$z)
|
|
Tags:
Parameters:
method drawValue [line 648]
void drawValue(
valueIndex
$valueIndex)
|
|
Called internally. Draws the "ValueIndex" point of the Series.
Tags:
Overrides
Series::drawValue() (Called internally. Draws the "ValueIndex" point of the Series.)
Parameters:
method drawZone [line 775]
void drawZone(
$min,
$max,
$z)
|
|
Tags:
Parameters:
method getAngleIncrement [line 422]
double getAngleIncrement(
)
|
|
The Bottom Axis is used as Angle axis.
Gets angle in degrees used to draw the dividing grid lines in anti-clockwise direction.
The 0 starting angle is located at rightmost Polar coordinate.
Valid increments are between 0 and 359 degree.
You can control the grid lines pen by using Chart.Axes.Bottom.Grid.
Tags:
method getAngleValues [line 442]
Gets list of angle values for each polar point.
It is a TList object that stores each Polar point Angle value.
You can change angle values by using AngleValues.Value[ ] array of doubles.
Tags:
method getBrush [line 840]
Sets Polar Back Brush.
Tags:
method getCircleCenter [line 95]
method getCircleLabel [line 681]
void getCircleLabel(
$angle,
$index)
|
|
Tags:
Parameters:
method getCircleLabels [line 850]
boolean getCircleLabels(
)
|
|
Sets CicleLabel properties.
Default value: false
Tags:
method getCircleLabelsFont [line 91]
The Font characteristics for the labels of a circular TeeChart.
Tags:
method getCircleLabelsInside [line 883]
boolean getCircleLabelsInside(
)
|
|
Enables/disables the display of the axis labels inside the circle area.
Default value: false
Tags:
method getCircleLabelsRotated [line 910]
boolean getCircleLabelsRotated(
)
|
|
Places Circle Labels at an angle in line with the Radar/Polar circle at each Label point when true.
Default value: false
Tags:
method getCirclePen [line 931]
Determines the pen used to draw the outmost circle of all CustomPolar series derived Series.
Tags:
method getClockWiseLabels [line 941]
boolean getClockWiseLabels(
)
|
|
Displays the circle labels in a clockwise direction.
Default value: false
Tags:
method getCloseCircle [line 967]
boolean getCloseCircle(
)
|
|
Draws a Line between the last and first PolarSeries point coordinates.
If true, the Polar series polygon is closed.
Default value: true
Tags:
method getFont [line 869]
The label font characteristics.
Tags:
method getPen [line 989]
Determines Pen used to draw the Line connecting PolarSeries points.
Points can be displayed by setting Pointer.Visible to true.
You can set the Pen used to draw the circle using CirclePen.
Tags:
method getPointer [line 1006]
Pointer contains several properties to control the formatting attributes of Points like Pen, Brush, Draw3D, Visible, etc.
It is a subclass of Points series, Line series and all other derived Points series classes like Bubble series, Polar series and Candle series.
Each point in a Polar series is drawn using the Pointer properties.
Tags:
method getRadiusIncrement [line 1019]
double getRadiusIncrement(
)
|
|
Determines the increment used to draw the ring grid lines.
It is the same as accessing Chart.Axes.Left.Increment when using Polar series.
You can use RadiusIncrement with Polar series .AngleIncrement to control how gridlines are displayed in Polar charts.
Tags:
method getRadiusValues [line 454]
Gets list of radius values for each polar point.
It is a TList object that stores each Polar point Radius value.
You can change Radius values by using RadiusValues.Value[] array of doubles.
Tags:
method getTransparency [line 1041]
The Transparency level from 0 to 100%.
Default value: 0
Tags:
method getXValue [line 171]
void getXValue(
$valueIndex)
|
|
Tags:
Parameters:
method prepareForGallery [line 710]
method setAngleIncrement [line 826]
void setAngleIncrement(
value
$value)
|
|
Displays labels in 15,30,45 or 90 degree increments.
Example:
series1.setAngleIncrement(15);
Tags:
Parameters:
method setChart [line 722]
method setCircleLabels [line 860]
void setCircleLabels(
value
$value)
|
|
Sets CicleLabel properties.
Default value: false
Tags:
Parameters:
method setCircleLabelsInside [line 899]
void setCircleLabelsInside(
value
$value)
|
|
Enables/disables the display of the axis labels inside the circle area.
Default value: false
<p>Example:
series.setCircleLabelsInside(true);
</p>
Tags:
Parameters:
method setCircleLabelsRotated [line 921]
void setCircleLabelsRotated(
value
$value)
|
|
Places Circle Labels at an angle in line with the Radar/Polar circle at each Label point when true.
Default value: false
Tags:
Parameters:
method setClockWiseLabels [line 956]
void setClockWiseLabels(
value
$value)
|
|
Displays the circle labels in a clockwise direction when true.
Default value: false
Example:
series.setClockWiseLabels(true);
Tags:
Parameters:
method setCloseCircle [line 978]
void setCloseCircle(
value
$value)
|
|
Draws a Line between the last and first PolarSeries point coordinates.
Default value: true
Tags:
Parameters:
method setColor [line 744]
Tags:
Overrides
Series::setColor() (Default color for all points.
Default value: Color.Empty)
Parameters:
method setRadiusIncrement [line 1029]
void setRadiusIncrement(
value
$value)
|
|
Sets the increment used to draw the ring grid lines.
Tags:
Parameters:
method setTransparency [line 1051]
void setTransparency(
value
$value)
|
|
Sets Transparency level from 0 to 100%.
Default value: 0
Tags:
Parameters: