constructor Series [line 269]
Series Series(
[
$c = null])
|
|
Tags:
Parameters:
destructor __destruct [line 113]
method add [line 2854]
int add(
[value
$value = "null"])
|
|
Adds a new point with specified value.
Tags:
Implementation of:
- ISeries::add()
Parameters:
method addArray [line 3127]
void addArray(
values
$values)
|
|
Adds the array of double values.
Tags:
Parameters:
method addChartValue [line 893]
void addChartValue(
$source,
$valueIndex)
|
|
Tags:
Parameters:
method added [line 2552]
method addNull [line 2843]
Obsolete. Please use add() method without parameters instead.
Tags:
method addNullXY [line 2832]
int addNullXY(
x
$x, y
$y)
|
|
Obsolete. Please use add(x,y,Color.<!-- -->Transparent) method instead.
Tags:
Parameters:
method addSampleValues [line 3468]
method addSeriesMouseListener [line 212]
void addSeriesMouseListener(
$l)
|
|
Tags:
Parameters:
method addSeriesPaintListener [line 184]
void addSeriesPaintListener(
$l)
|
|
Tags:
Parameters:
method addText [line 3068]
Adds a new null point with specified text.
Tags:
Parameters:
method addValues [line 1078]
method addXY [line 2918]
Adds a new point with specified x and y values.
Tags:
Implementation of:
- ISeries::addXY()
Parameters:
method addXYColor [line 3018]
int addXYColor(
x
$x, y
$y, color
$color)
|
|
Adds a new point with specified x and y values and color.
Tags:
Parameters:
method addXYText [line 2957]
int addXYText(
x
$x, y
$y, text
$text)
|
|
Adds a new point with specified x,y values and text.
Tags:
Parameters:
method addXYTextColor [line 2972]
int addXYTextColor(
x
$x, y
$y, [text
$text = ""], [color
$color = null])
|
|
Adds a new point with specified x,y values, text and color.
Tags:
Parameters:
method addYColor [line 3050]
int addYColor(
value
$value, color
$color)
|
|
Adds a new point with specified value and color.
Tags:
Parameters:
method addYText [line 2901]
int addYText(
value
$value, text
$text)
|
|
Adds a new point with specified value and text.
Tags:
Parameters:
method addYTextColor [line 3031]
int addYTextColor(
value
$value, text
$text, color
$color)
|
|
Adds a new point with specified value, text and color.
Tags:
Parameters:
method assign [line 508]
void assign(
source
$source)
|
|
Copies all properties from one Series component to another.
Only the common properties shared by both source and destination Series are copied.
The following code copies all properties from Series2 into Series1:
Series1.Assign( Series2 ) ;
Some Series types restore method values after assigning them. For example, Points series restores the Pointer.Visible method to true after being assigned to a Line series, which has Pointers invisible by default.
Note: Series events are not assigned. Series DataSource and FunctionType properties are assigned. Assign is used by CloneChartSeries and ChangeSeriesType methods for example.
Tags:
Overridden in child classes as:
- BaseLine::assign()
- CustomPoint::assign()
Parameters:
method assignDispose [line 529]
void assignDispose(
$s,
$newSeries)
|
|
Tags:
Parameters:
method assignValues [line 887]
void assignValues(
source
$source)
|
|
Adds all Values from Source seriesto the current Series.
Tags:
Parameters:
method associatedToAxis [line 834]
method beginUpdate [line 1059]
Recalculates the function just one time, when finished adding points.
Tags:
method calcFirstLastVisibleIndex [line 1418]
method calcHorizMargins [line 779]
method calcPosValue [line 1905]
int calcPosValue(
value
$value)
|
|
Returns "Value" parameter coordinate position in pixels.
Tags:
Parameters:
method calcVerticalMargins [line 789]
method calcXPos [line 1918]
int calcXPos(
index
$index)
|
|
The pixel Screen Horizontal coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Horizontal Axis.
Tags:
Overridden in child classes as:
- CustomPoint::calcXPos()
- Returns horizontal screen position for a given point.
- CustomPolar::calcXPos()
- Returns the pixel Screen Horizontal coordinate of the ValueIndex Series
- Pie::calcXPos()
- Returns the pixel Screen Horizontal coordinate of the ValueIndex Series value.
- Smith::calcXPos()
- The pixel Screen Horizontal coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Horizontal Axis.
- Bar::calcXPos()
- The Screen X pixel coordinate of the ValueIndex Series value.
The horizontal Bar position is the "real" X pos + the BarWidth by our BarSeries order.
- HorizBar::calcXPos()
- The pixel Screen Horizontal coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Horizontal Axis.
Parameters:
method calcXPosValue [line 1931]
int calcXPosValue(
value
$value)
|
|
The pixel Screen Horizontal coordinate of the specified Value.
This coordinate is calculated using the Series associated Horizontal Axis.
Tags:
Parameters:
method calcXSizeValue [line 3819]
int calcXSizeValue(
value
$value)
|
|
Returns the size in pixels corresponding to value parameter in horizontal axis scales.
This coordinate is calculated using the Series associated Horizontal Axis.
Tags:
Parameters:
method calcYPos [line 1943]
int calcYPos(
index
$index)
|
|
The pixel Screen Vertical coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Vertical Axis.
Tags:
Overridden in child classes as:
- CustomPoint::calcYPos()
- Returns vertical screen position for a given point.
- CustomPolar::calcYPos()
- Returns the pixel Screen Vertical coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Vertical Axis.
- Smith::calcYPos()
- The pixel Screen Vertical coordinate of the ValueIndex Series value.
This coordinate is calculated using the Series associated Vertical Axis.
- Bar::calcYPos()
- The Screen Y pixel coordinate of the ValueIndex Series value.
- HorizBar::calcYPos()
- The vertical Bar position is the "real" Y pos plus the Barwidth by our BarSeries order.
This coordinate is calculated using the Series associated Vertical Axis.
Parameters:
method calcYPosValue [line 1954]
int calcYPosValue(
value
$value)
|
|
The pixel Screen Vertical coordinate of the specified Value.
This coordinate is calculated using the Series associated Vertical Axis.
Tags:
Parameters:
method calcYSizeValue [line 3832]
int calcYSizeValue(
value
$value)
|
|
Returns the size in pixels corresponding to value parameter in vertical axis scales.
This coordinate is calculated using the Series associated Vertical Axis.
Tags:
Parameters:
method calcZOrder [line 388]
method canAddRandomPoints [line 2313]
void canAddRandomPoints(
)
|
|
Tags:
method changeType [line 548]
Series changeType(
s
$s, newType
$newType)
|
|
Replaces ASeries object with a new Series object of another class.
Tags:
Parameters:
method checkDataSource [line 2482]
Refreshes all Series point values, either from database Tables or Series points.
You can call this method regularly if you want new or modified data to appear in realtime in the Series. The parent Chart will be repainted to reflect any changes.
Tags:
Implementation of:
- ISeries::checkDataSource()
method checkMouse [line 3155]
void checkMouse(
values
$c,
$x,
$y)
|
|
Adds the array of integer values.
Tags:
Parameters:
method checkOrder [line 3200]
Reorders points according to Order property of X,Y,etc value lists.
Refreshes sort order of Series points if Order type of XValues or YValues is not loNone.
Tags:
method checkOtherSeries [line 2414]
void checkOtherSeries(
$dest)
|
|
Tags:
Parameters:
method clear [line 3217]
Removes all points, texts and Colors from the Series.
Dependent Series are notified. If no new points are appended to the Series, nothing will be painted.
Tags:
Implementation of:
- ISeries::clear()
method clearLists [line 3224]
method clicked [line 3256]
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
Tags:
Overridden in child classes as:
- Custom::clicked()
- Calculates if any point is at XY position.
- Volume::clicked()
- Returns the ValueIndex of the "clicked" point in the Series.
- Arrow::clicked()
- FastLine::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
- CustomPolar::clicked()
- The ValueIndex of the "clicked" point in the Series.
- Pie::clicked()
- Smith::clicked()
- The ValueIndex of the "clicked" point in the Series.
- Funnel::clicked()
- The ValueIndex of the "clicked" point in the Series.
- ShapeSeries::clicked()
- Returns the ValueIndex of the "clicked" point in the Series.
Parameters:
method cloneS [line 858]
method cloneSeries [line 853]
Returns a new Series, copy of this original.
It returns the SeriesIndex of the new Series.
Tags:
method convertArray [line 3084]
void convertArray(
source
$a,
$numPoints)
|
|
Adds all points in source Series.
Tags:
Parameters:
method createNewSeries [line 363]
Series createNewSeries(
chart
$chart, type
$type, aFunction
$aFunction, [subIndex
$subIndex = 0])
|
|
Creates a new Series object and sets the Name, Chart, Sub-Style and Function methods.
This is an internal method, you should seldomly use it in your applications.
Tags:
Parameters:
method createSubGallery [line 3790]
method dataSourceArray [line 1132]
method delete [line 3277]
void delete(
index
$index)
|
|
Removes the index th point.
X values remain unchanged.
The Chart will be automatically redrawn.
Dependent Series will be recalculated.
Tags:
Parameters:
method dispose [line 302]
method doAfterDrawValues [line 382]
method doBeforeDrawChart [line 2216]
method doBeforeDrawValues [line 376]
method doClick [line 1207]
void doClick(
$valueIndex,
$e)
|
|
Tags:
Parameters:
method doClickPointer [line 244]
void doClickPointer(
$valueIndex,
$x,
$y)
|
|
Tags:
Parameters:
method doDoubleClick [line 1201]
void doDoubleClick(
$valueIndex,
$e)
|
|
Tags:
Parameters:
method draw [line 2203]
method drawLegend [line 1372]
void drawLegend(
[
$g = null],
$valueIndex,
$rect)
|
|
Tags:
Implementation of:
- ISeries::drawLegend()
Parameters:
method drawLegendShape [line 1350]
method drawMark [line 1963]
method drawMarks [line 1996]
method drawSeries [line 2222]
Draws the series to the Chart Canvas.
Tags:
method drawSeriesForward [line 2123]
method drawValue [line 3765]
method drawValuesForward [line 3740]
boolean drawValuesForward(
)
|
|
Returns whether Series draws its points in ascending/descending order.
Some Series need to draw their points in descending order (starting from the last point to the first) depending on certain situations. For example, when the horizontal axis Inverted property is True.
Tags:
Overridden in child classes as:
- Pyramid::drawValuesForward()
- Returns whether the Series needs to draw points in ascending/descending order.
Some Series need to draw their points in descending order (starting from the last point to the first) depending on certain situations.
method endUpdate [line 1067]
Recalculates the function just one time, when finished adding points.
Tags:
method fillSampleValues [line 3500]
void fillSampleValues(
[numValues
$numValues = -1])
|
|
Adds the specified NumValues random points.
Tags:
Parameters:
method fireSeriesMouseEvent [line 220]
void fireSeriesMouseEvent(
$se)
|
|
Tags:
Parameters:
method fireSeriesPaint [line 192]
void fireSeriesPaint(
$e)
|
|
Tags:
Parameters:
method galleryChanged3D [line 794]
method getActive [line 2625]
Shows or hides this series.
It can be changed both at design time or runtime. When hiding, all point values are preserved, so there's no need to refill the values again when showing them. The Series relatives Chart Axis are rescaled in order to accomodate changes.
Tags:
Implementation of:
- ISeries::getActive()
method getAllowSinglePoint [line 525]
method getBitmapEditor [line 604]
Returns the URL of the associated bitmap icon for a given Series class.
This icon is used at ChartListBox and Series Editor dialog.
Tags:
method getColor [line 2594]
Default color for all points.
The TChart Series SeriesColor method is the default color in which the Series points will be drawn. It could be any valid color. If you add points with Color.EMPTY color, then they will be drawn with the SeriesColor color. This method is the default Color associated to the Series. When you place a new Series component in a Chart, TeeChart will assign a free color to this method (a Color that no other Series in the same Chart uses). Some Series have the ColorEach boolean property. Setting this to true will force the Series to paint each point with a different color, thus without using its SeriesColor.
SeriesColor is also used to paint the small rectangle in Chart Legend.
Default value: Color.Empty
Tags:
Overridden in child classes as:
- Points::getColor()
Implementation of:
- ISeries::getColor()
method getColorEach [line 1225]
Draws points with different preset Colors.
If false, all points will be drawn using the Series Series.Color color method.
If true, each Series point will be "colored" with its corresponding point color. The point colors are stored in the Series.PointColor array. If a point has an Color.Empty color value, then a TeeChart determined, available color value will be used to draw it.
Default value: false
Tags:
Overridden in child classes as:
- Bubble::getColorEach()
- Controls which color will be drawn on the bubbles.
If false, all points will be drawn using Series Series.Color.
- Pie::getColorEach()
- Draws points with different preset Colors.
Default value: true
Implementation of:
- ISeries::getColorEach()
method getColorMember [line 757]
The the Datasource Color Field.
Default value: ""
Tags:
method getColors [line 422]
Accesses the stored Color Array, if created, for the Series.
When attaching new series to any Chart, setting TChart Series.SerieColor to Color.EMPTY will make TeeChart assign a different color to each Series.
Some Series types allow Color.EMPTY in their Pen and Brushes properties, thus forcing the use of the actual point color instead of the Pen or Brush assigned color.
Default value: null
<p>Example:
candleSeries.add( ...., Color.Yellow );
candleSeries.getColors().setColor( 10, Color.Blue);
</p>
Tags:
method getCount [line 3265]
method getCountLegendItems [line 1230]
method getCursor [line 3697]
Cursor displayed when mouse is over a series point.
Each Series determines the intersection of points with mouse coordinates each time the mouse moves. There are many different Cursors available.
The Series ZOrder determines the order in which Series will be examined to calculate the clicked Series point.
Default value: default
Tags:
method getCustomHorizAxis [line 639]
Axis getCustomHorizAxis(
)
|
|
Specifies the custom horizontal axis for the series.
After adding a new horizontal Custom Axis to a Chart, use CustomHorizAxis to associate the Series to the Custom Axis.
Together with the axis PositionPercent and "stretching" methods, it's possible to have unlimited axes floating anywhere on the chart.
Scroll, zoom, and axis hit-detection also apply to custom-created axes.
Creating extra axes is only allowed at run-time, as a few lines of code are necessary.
Default value: null
Tags:
method getCustomVertAxis [line 676]
Axis getCustomVertAxis(
)
|
|
Specifies the custom vertical axis for the series.
Default value: null
Tags:
method getDataSource [line 2326]
method getDepth [line 3593]
The Depth of the series points or interconnecting lines.
Default value: -1
Tags:
method getDescription [line 1250]
method getEndZ [line 1786]
method getFields [line 2393]
void getFields(
$otherList)
|
|
Tags:
Parameters:
method getFirstVisible [line 3672]
method getFunction [line 3565]
Function object to calculate values.
Default value: null
Tags:
method getHasZValues [line 2176]
method getHorizAxis [line 260]
method getHorizontalAxis [line 1851]
Horizontal axis associated to this Series.
Default value: HorizontalAxis.Bottom
Tags:
method getLabelMember [line 734]
The the Datasource Label Field.
Default value: ""
Tags:
method getLabels [line 712]
method getLastVisible [line 3682]
method getLegendString [line 3930]
String getLegendString(
legendIndex
$legendIndex, legendTextStyle
$legendTextStyle)
|
|
Returns the formatted String corresponding to the LegendIndex point.
Tags:
Overridden in child classes as:
- Funnel::getLegendString()
- Returns LegendString for LegendIndex'th item.
Implementation of:
- ISeries::getLegendString()
Parameters:
method getMandatory [line 298]
method getMarks [line 3721]
Defines how to draw a mark near to each Series point.
A mark consist of a colored rectangle with a text string on it and a line that indicates which points corresponds to which mark.
Each different Series type draws it's marks differently.
Tags:
Implementation of:
- ISeries::getMarks()
method getMarkText [line 1611]
String getMarkText(
valueIndex
$valueIndex)
|
|
Returns the String corresponding to the Series Mark text for a given ValueIndex point.
The Mark text depends on the Marks.Style method.
Tags:
Overridden in child classes as:
- Funnel::getMarkText()
Implementation of:
- ISeries::getMarkText()
Parameters:
method getMarkValue [line 1522]
double getMarkValue(
valueIndex
$valueIndex)
|
|
Returns corresponding Point value suitable for displaying at Series Marks.
Tags:
Implementation of:
- ISeries::getMarkValue()
Parameters:
method getMaxXValue [line 4016]
method getMaxYValue [line 4026]
method getMaxZValue [line 4056]
method getMiddleZ [line 1751]
method getMinXValue [line 4036]
method getMinYValue [line 4046]
The Minimum Value of the Series Y Values List.
Tags:
Overridden in child classes as:
- CustomPoint::getMinYValue()
- Returns the Minimum Value of the Series Y Values List.
- Area::getMinYValue()
- 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.
- OHLC::getMinYValue()
- 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.
- Arrow::getMinYValue()
- The Minimum Value of the Series Y Values List.
- Bubble::getMinYValue()
- The Minimum Value of the Series Y Values List.
- Bar::getMinYValue()
- The Minimum Value of the Series Y Values List.
- Bar3D::getMinYValue()
- Returns the Minimum Value of the Series Y Values List.
- HorizBar::getMinYValue()
- The Minimum Value of the Series Y Values Lists.
As some Series have more than one Y Values List, this Minimum Value is the "Minimum of Minimums" of all Series Y Values lists.
- Funnel::getMinYValue()
- 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.
- HighLow::getMinYValue()
- The Minimum Value of the Series Y Values List.
- Pyramid::getMinYValue()
- The Minimum Value of the Series Y Values List.
method getMinZValue [line 4066]
method getNotMandatory [line 294]
method getNumGallerySeries [line 1240]
int getNumGallerySeries(
)
|
|
For internal use.
Tags:
method getNumSampleValues [line 3458]
void getNumSampleValues(
)
|
|
Tags:
method getOriginValue [line 1958]
method getPercentFormat [line 1830]
String getPercentFormat(
)
|
|
The Format to display point values as percentage.
PercentFormat is a standard string specifier. It is used to draw the Series Marks Percent Style figures.
Default value: Language::getString("DefPercentFormat")
Tags:
method getPoint [line 448]
SeriesXYPoint getPoint(
index
$index)
|
|
Point characteristics.
Tags:
Parameters:
method getSeriesColor [line 2572]
Obsolete. Use the Series.Color method instead.
Tags:
method getShowInLegend [line 3651]
boolean getShowInLegend(
)
|
|
Displays this Series Title in Legend.
It is only meaningful when LegendStyle is Series or LastValues.
Default value: true
Tags:
Implementation of:
- ISeries::getShowInLegend()
method getStartZ [line 1738]
method getTitle [line 2691]
Series description to show in Legend and dialogs.
Every Series has a Title method of type String. It is used in TChart.Legend to draw the series descriptions. If Title is empty, then the Series class Name will be used to draw the legend. Setting Title both at design time and runtime will force the Chart to repaint.
Default value: ""
Tags:
method getUseAxis [line 830]
method getValueColor [line 1985]
method getValueFormat [line 1807]
Determines the Format to display point values.
It specifies the desired formatting string to be applied to Axis Labels.
It has effect when Axis associated Series have their XValues.DateTime or YValues.DateTime is set to false.
For DateTime Axis labels use AxisLabels.DateTimeFormat.
ValueFormat is a standard formatting string specifier.
Chart Axis uses it to draw the axis labels.
Chart Series uses it to draw the Marks.
Default value: Language::getString("DefValueFormat")
Tags:
Implementation of:
- ISeries::getValueFormat()
method getValueList [line 2381]
method getValueListNum [line 2376]
void getValueListNum(
list
$index)
|
|
Adds the collection of objects that implement the IList interface.
Tags:
Parameters:
method getValueMarkText [line 1675]
String getValueMarkText(
index
$index)
|
|
Returns the String representation of a Index point used to draw the Mark.
Tags:
Implementation of:
- ISeries::getValueMarkText()
Parameters:
method getValuesLists [line 570]
Returns the steema.teechart.styles.ValuesLists object of the series.
It permits access to the list of TeeChartValueLists of a Series.
Several standard Series types such as TLineSeries and TBarSeries maintain 2 ValueLists, X and Y values. Other Series such as TCandleSeries maintain more lists, ie. DateValues, OpenValues, HighValues, LowValues and CloseValues.
Tags:
method getVertAxis [line 264]
method getVerticalAxis [line 1878]
Determines Vertical axis associated to this Series.
Default value: VerticalAxis.Left
Tags:
method getVisible [line 1275]
Returns if this series is Visible.
Tags:
method getXValues [line 465]
Values defining horizontal point positions.
By default, any Series has an XValues property. This is the IValueList where the point values will be stored at runtime. Also by default, XValues is a Public method. Some derived Series publish it: Line series, Bar series, Points series, etc. Some others publish it with another, more friendly name: GanttSeries.StartValues, etc.
WARNING:
You CAN NOT Delete, Clear or Add values DIRECTLY. You need to call the Series equivalent methods to do this.
Tags:
Implementation of:
- ISeries::getXValues()
method getYMandatory [line 4076]
method getYValueList [line 616]
ValueList getYValueList(
aListName
$aListName)
|
|
Returns the value list that the AListName parameter has.
Tags:
Parameters:
method getYValues [line 482]
Values defining vertical point positions.
WARNING: You
CAN NOT Delete, Clear or Add values DIRECTLY. You need to call the Series equivalent methods to do this.
Tags:
Implementation of:
- ISeries::getYValues()
method getZOrder [line 3625]
Determines where on the depth axis the Series is drawn.
Read-only and run time.
It's valid only when TChart.Aspect.View3D is true and when there's more than one Series in the same chart.
You can't alter the ZOrder property directly. If you want a different order, you need to use tChart.SeriesList instead.
The ZOrder property is calculated for each Series just before the Chart is drawn.
TChart.ApplyZOrder controls if Series will be assigned a different Z position or not. When False, all Series are drawn at same Z plane.
TChart.MaxZOrder returns the highest of all Series ZOrder values.
Default value: AutoZOrder
Tags:
Implementation of:
- ISeries::getZOrder()
method hasDataSource [line 1176]
method hasListenersOf [line 250]
void hasListenersOf(
$listener)
|
|
Tags:
Parameters:
method hasNoMandatoryValues [line 580]
void hasNoMandatoryValues(
)
|
|
Tags:
method isNull [line 3533]
boolean isNull(
index
$index)
|
|
Returns true if the index th point in the Series is "null" or "empty".
A point is considered "null" when the color of that point is "Transparent".
Tags:
Implementation of:
- ISeries::isNull()
Parameters:
method isValidSeriesSource [line 3554]
void isValidSeriesSource(
$value)
|
|
Tags:
Parameters:
method isValidSourceOf [line 3549]
boolean isValidSourceOf(
value
$value)
|
|
Validates Series datasource.
The isValidSourceOf function returns false if the Value parameter is the same as Self.
It's used to validate the DataSource property both at design and run-time.
Tags:
Overridden in child classes as:
- OHLC::isValidSourceOf()
- Validates Series datasource.
- Bubble::isValidSourceOf()
- It's used to validate the DataSource property both at design and run-time.
It returns false if the Value parameter is the same as Self.
- Gantt::isValidSourceOf()
- True if Series source is Gantt.
It returns false if the Value parameter is the same as Self.
It's used to validate DataSource both at design and run-time.
- HighLow::isValidSourceOf()
- True if Series source is HighLow.
Returns false if the Value parameter is the same as Self.
It's used to validate the DataSource method both at design and run-time.
- ShapeSeries::isValidSourceOf()
- Returns false if the Value parameter is the same as Self.
Parameters:
method legendItemColor [line 1367]
method legendToValueIndex [line 3767]
method maxMarkWidth [line 1504]
Returns the length in pixels of the longest Mark text.
Tags:
method moreSameZOrder [line 2186]
method mouseEvent [line 962]
method newFromType [line 318]
Series newFromType(
type
$type)
|
|
Creates a new series from the Class type of an existing series object.
Tags:
Parameters:
method numSampleValues [line 3463]
method onDisposing [line 2713]
method paintLegend [line 804]
void paintLegend(
g
$g, r
$r)
|
|
Draws the Series "Legend" on the specified rectangle and Graphics.
Tags:
Parameters:
method prepareForGallery [line 1317]
method prepareLegendCanvas [line 1346]
method randomBounds [line 3346]
void randomBounds(
index
$numValues, count
1, removeGap
2)
|
|
Removes count number of points starting at index.
When RemoveGap parameter is true, it calls ValueList FillSequence.
The Chart will be automatically redrawn.
Dependent Series will be recalculated.
Tags:
Parameters:
method readResolve [line 333]
method recalcGetAxis [line 2511]
method refreshSeries [line 1041]
Recalculates all dependent Series points again.
Each Series has a DataSource method. When DataSource is a valid Series or DataSet component, Series get all point values from the DataSource and adds them as Series points. The RefreshSeries method forces the Series to Clear and get all points again from the DataSource component. The Refreshing process traverses the Series tree recursively.
Tags:
method removeMarkTextResolver [line 180]
void removeMarkTextResolver(
)
|
|
Tags:
method removeSeriesMouseListener [line 216]
void removeSeriesMouseListener(
$l)
|
|
Tags:
Parameters:
method removeSeriesPaintListener [line 188]
void removeSeriesPaintListener(
$l)
|
|
Tags:
Parameters:
method repaint [line 1684]
Forces the Chart to Repaint.
You don't normally call Repaint directly. It can be used within derived TChartSeries components when changing their properties internally .
Tags:
method sameClass [line 1694]
Returns True when the tmpSeries parameter is of the same class.
Tags:
Parameters:
method setActive [line 2639]
void setActive(
value
$value)
|
|
Shows or hides this series.
It can be changed both at design time or runtime. When hiding, all point values are preserved, so there's no need to refill the values again when showing them. The Series relatives Chart Axis are rescaled in order to accomodate changes.
Tags:
Overridden in child classes as:
- Circular::setActive()
Implementation of:
- ISeries::setActive()
Parameters:
method setChart [line 2715]
method setColor [line 2606]
method setColorEach [line 1114]
method setColorMember [line 767]
void setColorMember(
value
$value)
|
|
Sets the Datasource Color Field.
Default value: ""
Tags:
Parameters:
method setColors [line 438]
void setColors(
value
$value)
|
|
Accesses the stored Color Array, if created, for the Series.
Default value: null
Tags:
Parameters:
method setCursor [line 3708]
void setCursor(
value
$value)
|
|
Cursor displayed when mouse is over a series point.
Default value: default
Tags:
Parameters:
method setCustomHorizAxis [line 649]
void setCustomHorizAxis(
value
$value)
|
|
Specifies the custom horizontal axis for the series.
Default value: null
Tags:
Parameters:
method setCustomHorizAxisValue [line 663]
void setCustomHorizAxisValue(
value
$value)
|
|
Specifies the custom horizontal axis for the series.
Default value: null
Tags:
Parameters:
method setCustomVertAxis [line 699]
void setCustomVertAxis(
value
$value)
|
|
Specifies the custom vertical axis for the series.
Default value: null
Tags:
Parameters:
method setCustomVertAxisValue [line 686]
void setCustomVertAxisValue(
value
$value)
|
|
Specifies the custom vertical axis for the series.
Default value: null
Tags:
Parameters:
method setDataSource [line 2337]
void setDataSource(
value
$value)
|
|
Object to load data from.
Default value: null
Tags:
Implementation of:
- ISeries::setDataSource()
Parameters:
method setDepth [line 3604]
void setDepth(
value
$value)
|
|
Sets the Depth of the series points or interconnecting lines.
Default value: -1
Tags:
Parameters:
method setEndZ [line 1790]
method setFunction [line 3570]
method setHorizontal [line 2760]
method setHorizontalAxis [line 1861]
void setHorizontalAxis(
value
$value)
|
|
Stes the Horizontal axis associated to this Series.
Default value: HorizontalAxis.Bottom
Tags:
Parameters:
method setLabelMember [line 744]
void setLabelMember(
value
$value)
|
|
Sets the Datasource Label Field.
Default value: ""
Tags:
Parameters:
method setLabels [line 724]
void setLabels(
value
$value)
|
|
Accesses a list of series point labels.
Tags:
Parameters:
method setMarks [line 1755]
method setMarkTextResolver [line 171]
void setMarkTextResolver(
$resolver)
|
|
Tags:
Parameters:
method setMiddleZ [line 1759]
method setNull [line 3784]
void setNull(
valueIndex
$valueIndex)
|
|
Sets the specified series point to a null (transparent) point.
Example:
lineSeries1.setNull( 123 ); // -- make null (empty) point index 123
lineSeries1.setIgnoreNulls( false ); // -- allow null points
lineSeries1.setStairs( true ); // -- set "stairs" mode
Tags:
Parameters:
method setPercentFormat [line 1840]
void setPercentFormat(
value
$value)
|
|
Sets the Format to display point values as percentage.
Default value: Language::getString("DefPercentFormat")
Tags:
Parameters:
method setSeriesColor [line 2308]
void setSeriesColor(
value
$value)
|
|
Obsolete. Use the Series.Color method instead.
Tags:
Parameters:
method setShowInLegend [line 3662]
void setShowInLegend(
value
$value)
|
|
Displays this Series Title in Legend.
Default value: true
Tags:
Parameters:
method setStartZ [line 1742]
method setSubGallery [line 3801]
method setTitle [line 2702]
void setTitle(
value
$value)
|
|
Series description to show in Legend and dialogs.
Default value: ""
Tags:
Parameters:
method setValueFormat [line 1817]
void setValueFormat(
value
$value)
|
|
Determines the Format to display point values.
Default value: Language::getString("DefValueFormat")
Tags:
Parameters:
method setValueList [line 3803]
void setValueList(
$l,
$value)
|
|
Tags:
Parameters:
method setVerticalAxis [line 1888]
void setVerticalAxis(
value
$value)
|
|
Determines Vertical axis associated to this Series.
Default value: VerticalAxis.Left
Tags:
Parameters:
method setVisible [line 1286]
void setVisible(
value
$value)
|
|
An alias to Active property.
Shows or Hides the component.
Tags:
Parameters:
method setXValues [line 470]
method setYValues [line 487]
method setZOrder [line 3637]
void setZOrder(
value
$value)
|
|
Determines where on the depth axis the Series is drawn.
Default value: AutoZOrder
Tags:
Parameters:
method setZPositions [line 1763]
method swap [line 2677]
method swapValueIndex [line 2655]
void swapValueIndex(
a
$a, b
$b)
|
|
Exchanges one point with another. Also the point color and point label.
Tags:
Overridden in child classes as:
- Pie::swapValueIndex()
Parameters:
method titleOrName [line 3888]
Obsolete. Please use ToString() method instead.
Tags:
method toString [line 3856]
Overridden ToString() method.
Tags:
method valuesListAdd [line 574]
method xScreenToValue [line 1299]
double xScreenToValue(
screenPos
$screenPos)
|
|
Returns the corresponding X value of a Screen position between Axis limits.
The Screen position must be between Axis limits.
Tags:
Parameters:
method yScreenToValue [line 1312]
double yScreenToValue(
screenPos
$screenPos)
|
|
Returns the corresponding Y value of a Screen position between Axis limits.
The resulting Value is based on the Series.GetVertAxis.
Tags:
Parameters:
method __get [line 99]
method __set [line 106]