Child classes:
|
Inherited Variables
|
Inherited Methods
|
constructor Area [line 44]
destructor __destruct [line 58]
method createSubGallery [line 321]
method getAreaBrush [line 122]
Determines the Brush used to fill the background Area region.
You can control the Area background color by using the Series.Color method.
Default value: Solid
Tags:
method getAreaLines [line 178]
Determines Pen to draw AreaLines.
By default AreaLines .Visible is false, so you need first to set it to true. You can control the Area Brush style by using AreaBrush.
Default value: null
Tags:
method getAreaLinesPen [line 166]
Obsolete. Please use AreaLines instead.
Tags:
method getDescription [line 303]
method getGradient [line 158]
Determines Gradient to fill the background Area region.
Example:
areaSeries = new Area(myChart.getChart());
areaSeries.getMarks().setVisible(false);
areaSeries.setColor(Color.RED);
areaSeries.fillSampleValues(10);
areaSeries.setTransparency(0);
areaSeries.setStacked(CustomStack.NONE);
com.steema.teechart.drawing.Gradient tmpGradient = areaSeries.getGradient();
tmpGradient.setVisible(true);
tmpGradient.setUseMiddle(true);
tmpGradient.setDirection(GradientDirection.HORIZONTAL);
tmpGradient.setStartColor(Color.RED);
tmpGradient.setMiddleColor(Color.BLUE);
tmpGradient.setEndColor(Color.GREEN);
tmpGradient.setTransparency(0);
Tags:
method getMaxXValue [line 277]
The Maximum Value of the Series X Values List.
Tags:
Overrides
CustomPoint::getMaxXValue() (Returns the Maximum Value of the Series X Values List.)
method getMaxYValue [line 249]
Returns the highest of all the current Series Y point values.
Tags:
Overrides
CustomPoint::getMaxYValue() (Returns the Maximum Value of the Series Y Values List.)
method getMinXValue [line 290]
The Minimum Value of the Series X Values List.
Tags:
Overrides
CustomPoint::getMinXValue() (Returns the Minimum Value of the Series X Values List.)
method getMinYValue [line 264]
Returns the Minimum Value of the Series Y Values List.
As some Series have more than one Y Values List, this Minimum Value is the "Minimum of Minimums" of all Series Y Values lists.
Tags:
Overrides
CustomPoint::getMinYValue() (Returns the Minimum Value of the Series Y Values List.)
method getMultiArea [line 83]
Determines how Multi-AreaSeries are displayed.
Determines the kind of displayed Area when there's more than one Area Series with the same ParentChart. The default value is None, meaning all Areas will be drawn one behind the other.
Stacked and Stacked100 modes will draw each Area on top of previous one.
Stacked100 adjusts each individual point to a common 0..100 axis scale.
The order which Series are accumulated depends on the Chart.SeriesList method.
Default value: None
Tags:
method getOrigin [line 220]
The axis value as a common bottom for all AreaSeries points.
Default value: O
Tags:
method getOriginPos [line 307]
method getTopGradient [line 131]
Determines how to fill the top 3D Area region.
Tags:
method getUseOrigin [line 188]
Aligns bottom of AreaSeries to the Origin property value.
Default value: false
Tags:
method prepareLegendCanvas [line 315]
void prepareLegendCanvas(
$g,
$valueIndex,
$backColor,
$aBrush)
|
|
Tags:
Overrides
Series::prepareLegendCanvas() (parent method not documented)
Parameters:
method setMultiArea [line 100]
void setMultiArea(
value
$value)
|
|
Sets how multiple areas are displayed.
Tags:
Parameters:
method setOrigin [line 240]
void setOrigin(
value
$value)
|
|
Sets axis value as a common bottom for all AreaSeries points.
Default value: O
Example:
areaSeries = new Area(myChart.getChart());
areaSeries.getMarks().setVisible(false);
areaSeries.fillSampleValues(20);
areaSeries.setStacked(CustomStack.NONE);
areaSeries.setUseOrigin(false);
areaSeries.setOrigin(200);
Tags:
Parameters:
method setSubGallery [line 336]
void setSubGallery(
$index)
|
|
Tags:
Overrides
Series::setSubGallery() (Creates and prepares the index'th Series style to show at sub-gallery dialog.)
Parameters:
method setUseOrigin [line 210]
void setUseOrigin(
value
$value)
|
|
Enables/disables the setting of the Y value (via the Origin property) that defines the bottom position for area points.
Default value: false
<p>Example:
areaSeries = new Area(myChart.getChart());
areaSeries.getMarks().setVisible(false);
areaSeries.fillSampleValues(20);
areaSeries.setStacked(CustomStack.NONE);
areaSeries.setUseOrigin(false);
areaSeries.setOrigin(200);
</p>
Tags:
Parameters:
method __get [line 30]
method __set [line 37]