Hide Comments
Hide Comments

Comments (0)

The EndX and  EndY properties specify the end point of the arrow (where the arrow head is drawn). Use the X and Y properties to specify the starting point or base of the arrow and the EndX and EndY properties specify the ending point (arrowhead) of the arrow.
 

Namespace: RSCharts

expandingSyntax

Delphi

published
  property EndX: TRSChartValueType Index 2 read GetValue write SetValue;
 

Property Value

Type: TRSChartValueType

expandingExamples

The follow code creates an arrow:

Delphi

var
   Arrow: TRSArrowChartValue;
 begin
   Arrow := RSArrowChart1.Values.Add;
   Arrow.X := 10;
   Arrow.Y := 10;
   Arrow.EndX := 40;
   Arrow.EndY := 40;
 end;

expandingSee Also

Comments (0)

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