static method changeAllSeriesType [line 439]
static void changeAllSeriesType(
$chart,
$newClass)
|
|
Tags:
Parameters:
static method changeSeriesType [line 420]
static void changeSeriesType(
$series,
$newClass)
|
|
Tags:
Parameters:
constructor Chart [line 79]
Chart Chart(
[
$parent = null], [
$cursor = null])
|
|
The class constructor.
Parameters:
method activeSeriesLegend [line 576]
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 2333]
method broadcastMouseEvent [line 737]
void broadcastMouseEvent(
$e,
$c)
|
|
Tags:
Parameters:
method broadcastToolEvent [line 2463]
void broadcastToolEvent(
$ce)
|
|
Tags:
Parameters:
method canClip [line 1270]
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 393]
method chartRectHeight [line 374]
method chartRectWidth [line 370]
method checkZoomPanning [line 680]
void checkZoomPanning(
$e)
|
|
Tags:
Parameters:
method cloner [line 263]
method countActiveSeries [line 1933]
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 2408]
method doChangedBrush [line 379]
method doChangedFont [line 387]
method doDrawLegend [line 1859]
method formattedLegend [line 1987]
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 1776]
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 1604]
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 getAspect [line 2198]
method getAutoRepaint [line 2360]
boolean getAutoRepaint(
)
|
|
Returns if the Chart should automatically repaint itself when a property has been changed.
Tags:
Implementation of:
- IBaseChart::getAutoRepaint()
method getAxes [line 2267]
Accesses the five axes, Top, Left, Right, Bottom and z depthas well as custom axis objects.
Tags:
Implementation of:
- IBaseChart::getAxes()
method getAxisSeries [line 1327]
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 2342]
method getChartBounds [line 301]
method getChartRect [line 2378]
method getChartRectBottom [line 366]
void getChartRectBottom(
)
|
|
Tags:
method getExport [line 2281]
Accesses Chart export attributes.
Tags:
method getFirstActiveSeries [line 1686]
Series getFirstActiveSeries(
)
|
|
Returns first active (visible) series.
Tags:
method getFooter [line 2166]
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 2212]
method getHeader [line 2112]
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 340]
method getImport [line 2295]
Accesses Chart import attributes.
Tags:
method getItem [line 1635]
Default indexer.
Example:
tChart1[0].Color=Color.Blue;
is equivalent to
tChart1.Series[0].Color=Color.Blue;
Tags:
Parameters:
method getLeft [line 354]
method getLegend [line 2093]
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()
method getLegendPen [line 2312]
method getListeners [line 463]
TeeEventListeners getListeners(
)
|
|
Returns array list of objects that implement the TeeEventListener interface.
Tags:
method getMaxValuesCount [line 2001]
method getMaxXValue [line 1538]
double getMaxXValue(
axis
$axis)
|
|
Returns the Maximum Value of the Series X Values List.
Tags:
Parameters:
method getMaxYValue [line 1548]
double getMaxYValue(
axis
$axis)
|
|
Returns the highest of all the current Series Y point values.
Tags:
Parameters:
method getMaxZOrder [line 2346]
method getMinXValue [line 1558]
double getMinXValue(
axis
$axis)
|
|
Returns the Minimum Value of the Series X Values List.
Tags:
Parameters:
method getMinYValue [line 1568]
double getMinYValue(
axis
$axis)
|
|
Returns the Minimum Value of the Series Y Values List.
Tags:
Parameters:
method getNumPages [line 540]
method getPage [line 2064]
method getPanel [line 2021]
method getPanning [line 629]
Sets the scrolling direction or denies scrolling.
Tags:
method getParent [line 2041]
method getPrinter [line 2050]
Printing related attributes.
Tags:
method getPrinting [line 402]
method getRight [line 358]
method getSeries [line 775]
Series getSeries(
[int
$seriesIndex = -1])
|
|
Returns the Series at seriesIndex
Tags:
Parameters:
method getSeriesCollection [line 765]
Collection of Series contained in this Chart.
Tags:
method getSeriesCount [line 2396]
method getSeriesHeight3D [line 2304]
method getSeriesIndexOf [line 756]
void getSeriesIndexOf(
$value)
|
|
Tags:
Parameters:
method getSeriesTitleLegend [line 587]
String getSeriesTitleLegend(
seriesIndex
$seriesIndex, onlyActive
$onlyActive)
|
|
Returns the Series.Title string.
Tags:
Parameters:
method getSeriesWidth3D [line 2308]
method getSubFooter [line 2184]
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 2148]
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 2135]
Obsolete. Please use SubHeader instead.
Tags:
method getTitle [line 2126]
Obsolete. Please use Header instead.
Tags:
method getTool [line 2229]
Tool getTool(
index
$index)
|
|
Gets the index'th tool in getTools() collection
Tags:
Parameters:
method getTools [line 2238]
method getToolTip [line 559]
method getTop [line 362]
method getWalls [line 2252]
Accesses left, bottom and back wall characteristics of the Chart.
Tags:
Implementation of:
- IBaseChart::getWalls()
method getWidth [line 321]
method getZoom [line 613]
Accesses the Zoom characteristics of the Chart.
Tags:
method image [line 291]
method internalDraw [line 121]
Main drawing procedure. Paints all Chart contents.
Tags:
Parameters:
method internalMinMax [line 1339]
void internalMinMax(
$aAxis,
$isMin,
$isX)
|
|
Tags:
Parameters:
method isAxisCustom [line 1944]
method isAxisVisible [line 1654]
method isFreeSeriesColor [line 1579]
boolean isFreeSeriesColor(
color
$color, checkBackground
$checkBackground)
|
|
Returns whether the AColor parameter is used by any Series or not.
Tags:
Parameters:
method isValidDataSource [line 477]
void isValidDataSource(
$s,
$source)
|
|
Tags:
Parameters:
method maxMarkWidth [line 1478]
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 1457]
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 2320]
method multiLineTextWidth [line 1497]
void multiLineTextWidth(
$s)
|
|
Tags:
Parameters:
method paint [line 2418]
method readResolve [line 206]
method recalcWidthHeight [line 237]
void recalcWidthHeight(
$r)
|
|
Tags:
Parameters:
method removeAllComponents [line 451]
void removeAllComponents(
)
|
|
Tags:
method removeListener [line 470]
void removeListener(
$sender)
|
|
Tags:
Parameters:
method removeSeries [line 2329]
void removeSeries(
value
$value)
|
|
Removes a Series from the Chart series list, without disposing it.
Tags:
Implementation of:
- IBaseChart::removeSeries()
Parameters:
method series [line 2400]
method seriesLegend [line 1958]
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 setAspect [line 2202]
method setAutoRepaint [line 2369]
void setAutoRepaint(
value
$value)
|
|
Sets if this Chart should automatically repaint after a property change.
Tags:
Implementation of:
- IBaseChart::setAutoRepaint()
Parameters:
method setAxes [line 2271]
method setBrushCanvas [line 1240]
void setBrushCanvas(
$aColor,
$aBrush,
$aBackColor)
|
|
Tags:
Parameters:
method setCancelMouse [line 415]
method setChartBounds [line 311]
void setChartBounds(
value
$value)
|
|
Sets the four sides of the Chart (Left, Top, Right and Bottom)
Tags:
Parameters:
method setChartRect [line 2387]
void setChartRect(
value
$value)
|
|
Sets the rectangle to contain the four main Chart axes.
Tags:
Implementation of:
- IBaseChart::setChartRect()
Parameters:
method setExport [line 2285]
method setFooter [line 2170]
method setGraphics3D [line 2216]
method setHeader [line 2116]
method setHeight [line 349]
void setHeight(
value
$value)
|
|
Sets the Chart Height in pixels.
Tags:
Implementation of:
- IBaseChart::setHeight()
Parameters:
method setImport [line 2299]
method setItem [line 1645]
void setItem(
index
$index, value
$value)
|
|
Default indexer.
Tags:
Parameters:
method setLegend [line 2097]
method setLegendPen [line 2316]
method setMaxZOrder [line 2350]
method setPage [line 2068]
method setPanel [line 2025]
method setPanning [line 636]
void setPanning(
$panning)
|
|
Tags:
Parameters:
method setParent [line 2036]
void setParent(
value
$value)
|
|
Internal use.
Sets instance that implements the IChart interface.
Tags:
Parameters:
method setPrinter [line 2054]
method setPrinting [line 411]
void setPrinting(
value
$value)
|
|
Determines when Chart is being printed.
Tags:
Implementation of:
- IBaseChart::setPrinting()
Parameters:
method setSeriesCollection [line 785]
void setSeriesCollection(
$value)
|
|
Tags:
Parameters:
method setSubFooter [line 2188]
void setSubFooter(
$value)
|
|
Tags:
Parameters:
method setSubHeader [line 2152]
void setSubHeader(
$value)
|
|
Tags:
Parameters:
method setTools [line 2242]
method setWalls [line 2256]
method setWidth [line 330]
void setWidth(
value
$value)
|
|
Sets the Chart width in pixels.
Tags:
Implementation of:
- IBaseChart::setWidth()
Parameters:
method setZoom [line 620]
method tools [line 2404]
method undoZoom [line 1226]
Obsolete. Please use tChart1.<!-- -->Zoom.<!-- -->Undo method.
Tags:
method _paint [line 2428]
void _paint(
g
$g, rect
$rect)
|
|
Paints the Chart in your preferred Canvas and region.
Tags:
Parameters:
method __get [line 62]
method __set [line 69]
void __set(
$property,
$value)
|
|
Overrides
TeeBase::__set() (parent method not documented)
Parameters: