Hide Comments
Hide Comments

Comments (0)

Provides a caption or description of the chart value. This value will only be drawn if coLabelEachPoint is in the chart's  Options property.

Namespace: FMX.RS.ChartPanel

expandingSyntax

Delphi

published
  property Caption: String read FCaption write SetCaption;
 

Property Value

Type: String

expandingExamples

The following code builds a string containing the Caption for the value and all of the floating point numbers contained in the TRSChartValue:

Delphi

var
    i: Integer;
 begin
      result := Caption + ' = ';
      for i := 0 to ValueCount - 1 do
      begin
           result := result + FormatFloat( Fmt, Values[i] );
           if i < (ValueCount - 1) then
              result := result + ', ';
      end;
 end;

expandingSee Also

Comments (0)

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