Hide Comments
Hide Comments

Comments (0)

Specifies an optional text string to display on the link. The Caption is displayed at the midpoint of the line connecting the two graph chart values (specified by  ConnectionPoint and  ValueConnectionPoint). However, if there are additional  LinePoints, the Caption is displayed at the midpoint of the middle line segment.

Namespace: RSGraphCharts

expandingSyntax

Delphi

published
  property Caption: String read FCaption write SetCaption;
 

Property Value

Type: String

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