Hide Comments
Hide Comments

Comments (0)

Manages the collection of graph links for this chart value (e.g., the line from this graph chart value to other two graph chart values (specified by the  Value property). Each link is defined by the RSGraphCharts|TRSGraphChartLink class, which not only specifies the link but also the appearance of the link, including Caption,  LinePoints, and  ConnectionPoint.
 
 
 
 

Namespace: FMX.RS.GraphCharts

expandingSyntax

Delphi

published
  property Links: TRSGraphChartLinks read FLinks write SetLinks;
 

Property Value

Type: TRSGraphChartLinks

expandingExamples

The following code creates a graph chart value and initializes its Level. Then, it creates two children (e.g., Level+1) of the first graph chart value:

Delphi

var
    StartUp, Research, Development: TRSGraphChartValue;
 begin
      Startup := RSGraphChart1.Values.Add(0, 'Startup');
      Startup.Level := 0;
      // create the children
      Research := Startup.AddChild('Research');
      Development := Startup.AddChild('Development');
      // create a link between the two children
      Research.Links.Add.Value := Development;
 end;

expandingSee Also

Comments (0)

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