Class: Area
Source Location: /styles/Area.php
TeeBase
|
--Series
|
--BaseLine
|
--CustomPoint
|
--Custom
|
--Area
Area Class
Author(s):
Version:
Copyright:
- Copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
|
|
Child classes:
|
Inherited Variables
|
Inherited Methods
|
Class Details
Class Methods
constructor Area [line 36]
method createSubGallery [line 304]
method getAreaBrush [line 105]
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 161]
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 149]
Obsolete. Please use AreaLines instead.
Tags:
method getDescription [line 286]
method getGradient [line 141]
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 260]
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 232]
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 273]
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 247]
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 66]
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 203]
The axis value as a common bottom for all AreaSeries points. Default value: O
Tags:
method getOriginPos [line 290]
method getTopGradient [line 114]
Determines how to fill the top 3D Area region.
Tags:
method getUseOrigin [line 171]
Aligns bottom of AreaSeries to the Origin property value. Default value: false
Tags:
method prepareLegendCanvas [line 298]
void prepareLegendCanvas(
$g,
$valueIndex,
$backColor,
$aBrush)
|
|
Tags:
Overrides Series::prepareLegendCanvas() (parent method not documented)
Parameters:
method setMultiArea [line 83]
void setMultiArea(
value
$value)
|
|
Sets how multiple areas are displayed.
Tags:
Parameters:
method setOrigin [line 223]
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 319]
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 193]
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 22]
method __set [line 29]
|
|