static method changeAllSeriesType [line 458]
static void changeAllSeriesType(
$chart,
$newClass)
|
|
Tags:
Parameters:
static method changeSeriesType [line 439]
static void changeSeriesType(
$series,
$newClass)
|
|
Tags:
Parameters:
constructor Chart [line 80]
Chart Chart(
[
$parent = null], [
$cursor = null])
|
|
The class constructor.
Parameters:
method activeSeriesLegend [line 595]
Series activeSeriesLegend(
itemIndex
$itemIndex)
|
|
Returns the Active series (visible) that corresponds to the
ItemIndex position in the Legend.
When the Legend style is "Series", returns the series that corresponds to the Legend "ItemIndex" position. The "OnlyActive" parameter, when false takes into account all series, visibly active or not.
Tags:
Implementation of:
- IBaseChart::activeSeriesLegend()
Parameters:
method addSeries [line 2379]
method broadcastMouseEvent [line 756]
void broadcastMouseEvent(
$e,
$c)
|
|
Tags:
Parameters:
method broadcastToolEvent [line 2512]
void broadcastToolEvent(
$ce)
|
|
Tags:
Parameters:
method canClip [line 1289]
Returns the number of active (visible) series.
CanClip returns if the Chart Drawing Canvas has the capability of "clipping" lines and polygons.
"Clipping" means the feature that allows hiding drawing outside the rectangle or polygon specifed by the developer.
CanClip returns false when the Chart is displayed in OpenGL 3D, or when the Chart is printed and the TeeClipWhenPrinting constant is true, or when the Chart is converted to a metafile image and the TeeClipWhenMetafiling constant is true.
By default all display drivers and printers support clipping. You can turn off the clipping constants in case the printer or display driver has a bug related to clipping.
See also:
ClipPoints, TeeClipWhenPrinting, TeeClipWhenMetafiling, ClipCanvas, UnClipCanvas, ClipRoundRectangle and ClipPolygon.
Tags:
method canDrawPanelBack [line 412]
method chartRectHeight [line 393]
method chartRectWidth [line 389]
method checkZoomPanning [line 699]
void checkZoomPanning(
$e)
|
|
Tags:
Parameters:
method cloner [line 282]
method countActiveSeries [line 1953]
Returns the number of active (visible) series.
In other words it is a count of Series in Chart that have their Active property set to true.
Tags:
Implementation of:
- IBaseChart::countActiveSeries()
method doBaseInvalidate [line 2455]
method doChangedBrush [line 398]
method doChangedFont [line 406]
method doDrawLegend [line 1879]
method formattedLegend [line 2008]
String formattedLegend(
seriesOrValueIndex
$seriesOrValueIndex)
|
|
Returns the text string corresponding to a Legend position.
The Legend position depends on Legend.LegendStyle.
If LegendStyle is lsSeries, then the text string will be the SeriesOrValueIndexth Active Series Title.
If LegendStyle is lsValues, then the text string will be the formatted SeriesOrValueIndexth value of the first Active Series in the Chart.
If LegendStyle is lsAuto and only one Active Series exists in the Chart, then the LegendStyle is considered to be lsValues.
If there's more than one Active Series then LegendStyle will be lsSeries.
Tags:
Implementation of:
- IBaseChart::formattedLegend()
Parameters:
method formattedValueLegend [line 1796]
String formattedValueLegend(
aSeries
$aSeries, valueIndex
$valueIndex)
|
|
Returns the String to display at Legend for a given series and point
index.
In other words it returns the string representation of a Series Point value just as it would appear in Chart.Legend. The ValueIndex parameter is the point index. Legend.TextStyle and all other TChartLegend methods are used to create the resulting string.
Tags:
Implementation of:
- IBaseChart::formattedValueLegend()
Parameters:
method freeSeriesColor [line 1623]
Color freeSeriesColor(
checkBackground
$checkBackground)
|
|
Returns a color from the default color palette not used by any Series.
The CheckBackGround parameter controls if the returned color should or shouldn't be the Chart BackColor color. This function returns a Color which is not used by any Series in the Chart.
Tags:
Parameters:
method getAnimation [line 2274]
Gets the index'th animation in getAnimations() collection
Tags:
Parameters:
method getAnimations [line 2283]
Collection of Animation components contained in this Chart.
Tags:
method getAspect [line 2219]
method getAutoRepaint [line 2406]
boolean getAutoRepaint(
)
|
|
Returns if the Chart should automatically repaint itself when a property has been changed.
Tags:
Implementation of:
- IBaseChart::getAutoRepaint()
method getAxes [line 2313]
Accesses the five axes, Top, Left, Right, Bottom and z depthas well as custom axis objects.
Tags:
Implementation of:
- IBaseChart::getAxes()
- Accesses Axes methods and properties
method getAxisSeries [line 1346]
Series getAxisSeries(
axis
$axis)
|
|
Returns the first Series that depends on the specified Axis.
If no Series depends on Axis, the null value is returned.
Tags:
Parameters:
method getBottom [line 2388]
method getChartBounds [line 320]
method getChartRect [line 2425]
method getChartRectBottom [line 385]
void getChartRectBottom(
)
|
|
Tags:
method getExport [line 2327]
Accesses Chart export attributes.
Tags:
method getFirstActiveSeries [line 1706]
Series getFirstActiveSeries(
)
|
|
Returns first active (visible) series.
Tags:
method getFooter [line 2187]
Defines the Text and formatting attributes to be drawn at the bottom of
the Chart.
Use Text to enter the desired Footer lines, set Visible to true and change Font, Frame and Brush.
Use Alignment to control text output position.
Tags:
method getGraphics3D [line 2233]
IGraphics3D getGraphics3D(
)
|
|
Accesses TeeChart Draw attributes.
Tags:
Implementation of:
- IBaseChart::getGraphics3D()
- Accesses all visible graphics attributes..
method getHeader [line 2133]
Defines the Text and formatting attributes to be drawn at the top of
the Chart.
Use Text to enter the desired Header lines, set Visible to true and change Font, Frame and Brush. Use Alignment to control text output position.
Tags:
Implementation of:
- IBaseChart::getHeader()
method getHeight [line 359]
method getImport [line 2341]
Accesses Chart import attributes.
Tags:
method getItem [line 1655]
Default indexer.
Example:
tChart1[0].Color=Color.Blue;
is equivalent to
tChart1.Series[0].Color=Color.Blue;
Tags:
Parameters:
method getLeft [line 373]
method getLegend [line 2114]
Determines the Legend characteristics.
Legend determines the text and drawing attributes of Chart's textual representation of Series and Series values.
The Legend class draws a rectangle and for each Series in a Chart (or for each point in a Series) outputs a text representation of that Series (or that point). You can use the Legend.LegendStyle and Legend.TextStyle to control the text used to draw the legend.
The Legend can be positioned at Left, Right, Top and Bottom chart sides using Legend.Alignment.
Use Legend.Visible to show / hide the Legend.
Inverted makes Legend draw text starting from bottom.
Frame, Font and Color allow you to change the Legend appearance.
Legend.ColorWidth determines the percent width of each item's "colored" mark.
Legend.FirstValue controls which Series (or Series point) will be used to draw first Legend item.
Tags:
Implementation of:
- IBaseChart::getLegend()
- Accesses all visible Legend attributes..
method getLegendPen [line 2358]
method getListeners [line 482]
TeeEventListeners getListeners(
)
|
|
Returns array list of objects that implement the TeeEventListener interface.
Tags:
method getMaxValuesCount [line 2022]
method getMaxXValue [line 1557]
double getMaxXValue(
axis
$axis)
|
|
Returns the Maximum Value of the Series X Values List.
Tags:
Parameters:
method getMaxYValue [line 1567]
double getMaxYValue(
axis
$axis)
|
|
Returns the highest of all the current Series Y point values.
Tags:
Parameters:
method getMaxZOrder [line 2392]
method getMinXValue [line 1577]
double getMinXValue(
axis
$axis)
|
|
Returns the Minimum Value of the Series X Values List.
Tags:
Parameters:
method getMinYValue [line 1587]
double getMinYValue(
axis
$axis)
|
|
Returns the Minimum Value of the Series Y Values List.
Tags:
Parameters:
method getNumPages [line 559]
method getPage [line 2085]
method getPanel [line 2042]
Accesses all visible Background attributes..
Tags:
Implementation of:
- IBaseChart::getPanel()
- Accesses all visible Background attributes..
method getPanning [line 648]
Sets the scrolling direction or denies scrolling.
Tags:
method getParent [line 2062]
method getPrinter [line 2071]
Printing related attributes.
Tags:
method getPrinting [line 421]
method getRight [line 377]
method getSeries [line 794]
Series getSeries(
[int
$seriesIndex = -1])
|
|
Returns the Series at seriesIndex
Tags:
Parameters:
method getSeriesCollection [line 784]
Collection of Series contained in this Chart.
Tags:
method getSeriesCount [line 2443]
method getSeriesHeight3D [line 2350]
method getSeriesIndexOf [line 775]
void getSeriesIndexOf(
$value)
|
|
Tags:
Parameters:
method getSeriesTitleLegend [line 606]
String getSeriesTitleLegend(
seriesIndex
$seriesIndex, onlyActive
$onlyActive)
|
|
Returns the Series.Title string.
Tags:
Parameters:
method getSeriesWidth3D [line 2354]
method getSubFooter [line 2205]
Defines the Text and formatting attributes to be drawn at the bottom of
the Chart, just above the Footer text.
Use Text to enter the desired SubFooter lines, set Visible to true and change Font, Frame and Brush.
Use Alignment to control text output position.
Tags:
method getSubHeader [line 2169]
Defines the Text and formatting attributes to be drawn at the top of
the Chart, just below the Header text.
Use Text to enter the desired SubHeader lines, set Visible to true and change Font, Frame and Brush.
Use Alignment to control text output position.
Tags:
method getSubTitle [line 2156]
Obsolete. Please use SubHeader instead.
Tags:
method getTitle [line 2147]
Obsolete. Please use Header instead.
Tags:
method getTool [line 2250]
Tool getTool(
index
$index)
|
|
Gets the index'th tool in getTools() collection
Tags:
Parameters:
method getTools [line 2259]
method getToolTip [line 578]
method getTop [line 381]
method getWalls [line 2298]
Accesses left, bottom and back wall characteristics of the Chart.
Tags:
Implementation of:
- IBaseChart::getWalls()
method getWidth [line 340]
method getZoom [line 632]
Accesses the Zoom characteristics of the Chart.
Tags:
method image [line 310]
method internalDraw [line 125]
Main drawing procedure. Paints all Chart contents.
Tags:
Parameters:
method internalMinMax [line 1358]
void internalMinMax(
$aAxis,
$isMin,
$isX)
|
|
Tags:
Parameters:
method isAxisCustom [line 1965]
method isAxisVisible [line 1674]
method isFreeSeriesColor [line 1598]
boolean isFreeSeriesColor(
color
$color, checkBackground
$checkBackground)
|
|
Returns whether the AColor parameter is used by any Series or not.
Tags:
Parameters:
method isValidDataSource [line 496]
void isValidDataSource(
$s,
$source)
|
|
Tags:
Parameters:
method maxMarkWidth [line 1499]
Returns the Maximum width of the Active Series Marks.
Series Marks must be Visible. This can be used to adjust the Chart Margins in order to accomodate the biggest Series Mark.
Tags:
method maxTextWidth [line 1476]
Returns the Maximum width in pixels of all Series Labels, whether active or not.
This applies only to Series which have Labels.
Tags:
method moveSeriesTo [line 2366]
method multiLineTextWidth [line 1518]
void multiLineTextWidth(
$s)
|
|
Tags:
Parameters:
method paint [line 2466]
method readResolve [line 225]
method recalcWidthHeight [line 256]
void recalcWidthHeight(
$r)
|
|
Tags:
Parameters:
method removeAllComponents [line 470]
void removeAllComponents(
)
|
|
Tags:
method removeListener [line 489]
void removeListener(
$sender)
|
|
Tags:
Parameters:
method removeSeries [line 2375]
void removeSeries(
value
$value)
|
|
Removes a Series from the Chart series list, without disposing it.
Tags:
Implementation of:
- IBaseChart::removeSeries()
Parameters:
method series [line 2447]
method seriesLegend [line 1979]
Series seriesLegend(
itemIndex
$itemIndex, onlyActive
$onlyActive)
|
|
Returns the series that corresponds to the Legend "ItemIndex" position, when the Legend style is "Series".
The "OnlyActive" parameter, when false, takes into account all series, visibly active or not.
Tags:
Implementation of:
- IBaseChart::seriesLegend()
Parameters:
method setAnimations [line 2287]
void setAnimations(
$value)
|
|
Tags:
Parameters:
method setAspect [line 2223]
method setAutoRepaint [line 2415]
void setAutoRepaint(
value
$value)
|
|
Sets if this Chart should automatically repaint after a property change.
Tags:
Implementation of:
- IBaseChart::setAutoRepaint()
Parameters:
method setAxes [line 2317]
method setBrushCanvas [line 1259]
void setBrushCanvas(
$aColor,
$aBrush,
$aBackColor)
|
|
Tags:
Parameters:
method setCancelMouse [line 434]
method setChartBounds [line 330]
void setChartBounds(
value
$value)
|
|
Sets the four sides of the Chart (Left, Top, Right and Bottom)
Tags:
Parameters:
method setChartRect [line 2434]
void setChartRect(
value
$value)
|
|
Sets the rectangle to contain the four main Chart axes.
Tags:
Implementation of:
- IBaseChart::setChartRect()
Parameters:
method setExport [line 2331]
method setFooter [line 2191]
method setGraphics3D [line 2237]
method setHeader [line 2137]
method setHeight [line 368]
void setHeight(
value
$value)
|
|
Sets the Chart Height in pixels.
Tags:
Implementation of:
- IBaseChart::setHeight()
Parameters:
method setImport [line 2345]
method setItem [line 1665]
void setItem(
index
$index, value
$value)
|
|
Default indexer.
Tags:
Parameters:
method setLegend [line 2118]
method setLegendPen [line 2362]
method setMaxZOrder [line 2396]
method setPage [line 2089]
method setPanel [line 2046]
method setPanning [line 655]
void setPanning(
$panning)
|
|
Tags:
Parameters:
method setParent [line 2057]
void setParent(
value
$value)
|
|
Internal use.
Sets instance that implements the IChart interface.
Tags:
Parameters:
method setPrinter [line 2075]
method setPrinting [line 430]
void setPrinting(
value
$value)
|
|
Determines when Chart is being printed.
Tags:
Implementation of:
- IBaseChart::setPrinting()
Parameters:
method setSeriesCollection [line 804]
void setSeriesCollection(
$value)
|
|
Tags:
Parameters:
method setSubFooter [line 2209]
void setSubFooter(
$value)
|
|
Tags:
Parameters:
method setSubHeader [line 2173]
void setSubHeader(
$value)
|
|
Tags:
Parameters:
method setTools [line 2263]
method setWalls [line 2302]
method setWidth [line 349]
void setWidth(
value
$value)
|
|
Sets the Chart width in pixels.
Tags:
Implementation of:
- IBaseChart::setWidth()
Parameters:
method setZoom [line 639]
method tools [line 2451]
method undoZoom [line 1245]
Obsolete. Please use tChart1.<!-- -->Zoom.<!-- -->Undo method.
Tags:
method _paint [line 2476]
void _paint(
g
$g, rect
$rect)
|
|
Paints the Chart in your preferred Canvas and region.
Tags:
Parameters:
method __get [line 63]
method __set [line 70]
void __set(
$property,
$value)
|
|
Overrides
TeeBase::__set() (parent method not documented)
Parameters: