Hide Comments
Hide Comments

TRSEQChartValues.Add Method

Comments (0)

Creates a new EQ Bar or frequency item ( RSCharts|TRSEQChartValue instance) and adds it to the Items array. 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.

Add returns the new EQ value.
 

Note that because every time you change a value an event is called, it is faster to add and initialize a value using the overloaded  Add method.
 
 

Namespace: FMX.RS.Charts

expandingSyntax

Delphi

public
  function Add: TRSEQChartValue; overload;
 

Return Value

Type: TRSEQChartValue

expandingExamples

The following example creates values in the collection:

Delphi

var
   Value: TRSEQChartValue;  // 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.Value := 20.0;
   Value.High := 30;
   // this code adds the same point but much more quickly
   Value := EQChart.Values.Add( 20.0, 30.0, 'One', clRed );
 end;

expandingSee Also

Reference

RSCharts|TRSEQChartValues.Add(TRSChartValueType,TRSChartValueType,string,TCanvasColor)

Comments (0)

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