Hide Comments
Hide Comments

Comments (0)

Provide access to the third dimension of the  Values property formatted as a TDateTime. The  XAsDateTime,  YAsDateTime, and  ZAsDateTime properties provide access to the first three dimensions of the Values property formatted as a TDateTime

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      X, Y, and Z properties

Namespace: RSChartPanel

expandingSyntax

Delphi

protected
  property Z: TRSChartValueType Index 2 read GetValue write SetValue;
 

Property Value

Type: TRSChartValueType

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