Hide Comments
Hide Comments

Comments (0)

Provide access to the second dimension of the    Values property. The    X, Y, and    Z properties provide access to the first three dimensions of the Values property.

Use the X, Y, and Z property to access the coordinates of a point.

alert_noteNotes to Inheritors

These properties have protected visibility in the class, but descendant classes (e.g., RSCharts|TRS2DChartValue and TRS3DChartvalue ) publish the properties to provide more explanatory access to the dimensions of the Values property.

Remember to also publish the      XAsDateTime,      YAsDateTime, and      ZAsDateTime properties

Namespace: FMX.RS.ChartPanel

expandingSyntax

Delphi

protected
  property YAsDateTime: TDateTime Index 1 read GetAsDateTime write SetAsDateTime stored False;
 

Property Value

Type: TDateTime

expandingExamples

The following code sets the X, Y, and Z properties of a 3D point:

Delphi

var
   P: TRS3DChartValue;
 begin
   P := TRS3DChartValue.Create(nil);
   P.XAsDateTime := Now;
   P.Y := 2;
   P.Z := 3;
 end;

expandingSee Also

Comments (0)

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