Hide Comments
Hide Comments

TRSPointChartValues.Add(TRSChartValueType,String,TCanvasColor,Integer) Method

Comments (0)

Creates a new TRSPointChartValue instance and adds it to the Items array. The new instance is initialized with the X, Caption, Color, and ImageIndex parameters. Call Add to create a point value in the collection. The new value is placed at the end of the Items array, or, if the collection is Sorted, placed at the sorted point in the collection (based on a default value (0, 0)).

Add returns the new point value.

Namespace: RSCharts

expandingSyntax

Delphi

public
  function Add( X: TRSChartValueType; Caption: String = ''; Color: TCanvasColor = clxDefaultColor; ImageIndex: Integer = -1 ): TRSPointChartValue; overload;
 

Parameters

X

Type: TRSChartValueType

Caption

Type: String

Color

Type: TCanvasColor

ImageIndex

Type: Integer

Return Value

Type: TRSPointChartValue

expandingExamples

The following example creates values in the collection:

Delphi

var
   Value: TRSPointChartValue;  // note, this type should be the same that the chart uses (e.g., TRS2DChartValue, TRSArrowChartValue, etc)
 begin
   Value := MyChart.Values.Add;
   Value.Caption := 'One';
   Value.Color := clRed;
   Value.X := 10.0;
   Value.Y := 20.0;
   Value.ImageIndex := 0;
   // this code adds the same point but much more quickly
   Value := MyChart.Values.Add( 10.0, 20.0, 'One', clRed, 0 );
 end;

expandingSee Also

Comments (0)

RiverSoftAVG Charting Component Suite (RCCS) © 2005-2015, Thomas G. Grubb