Hide Comments
Hide Comments

Comments (0)

Creates a new FMX.RS.Charts.TRSPathChartValue instance and adds it to the Items array. Call Add to create a path shape 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)).

Add returns the new path shape 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: TRSPathChartValue; overload;
 

Return Value

Type: TRSPathChartValue

expandingExamples

The following example creates values in the collection:

Delphi

var
   Value: TRSPathChartValue;  // note, this type should be the same that the chart uses (e.g., TRS2DChartValue, TRSArrowChartValue, etc)
 begin
   Value := MyChart.Values.Add;
   Value.Caption := 'Hexagon';
   Value.Color := clRed;
   Value.X := 10.0;
   Value.Y := 20.0;
   Value.Width := 30;
   Value.Height := 40;
   Value.Data := 'M850,75 L958,137.5 L958,262.5 L850,325 L742,262.600006103516 L742,137.5 Z';
   // this code adds the same point but much more quickly
   Value := MyChart.Values.Add( RSRect(10,20,40,60), 'M850,75 L958,137.5 L958,262.5 L850,325 L742,262.600006103516 L742,137.5 Z', 'Hexagon', clRed );
 end;

expandingSee Also

Reference

TRSPathChartValues.Add(string,string,TCanvasColor)
TRSPathChartValues.Add(TRSRect,string,string,TCanvasColor)
Remove

Comments (0)

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