Hide Comments
Hide Comments

Comments (0)

Specifies which graph chart value this link connects with (the destination). Each TRSGraphChartLink is owned by a RSGraphCharts.TRSGraphChartValue , which automatically specifies the link's origin. Use this property to specify the links destination.

Namespace: RSGraphCharts

expandingSyntax

Delphi

published
  property Value: TRSGraphChartValue read FValue write SetValue stored False;
 

Property Value

Type: TRSGraphChartValue

expandingExamples

The following example creates a link between two graph chart values:

Delphi

var
   Link: TRSGraphChartLink;
 begin
   Link := RSGraphChart1.Values[0].Links.Add;
   Link.Value := RSGraphChart1.Values[1];
   Link.Caption := 'Manufacturing';
   Link.ConnectionPoint := cpBottom;
   Link.ValueConnectionPoint := cpTop;
 end;

expandingSee Also

Comments (0)

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