Hide Comments
Hide Comments

Comments (0)

Limits the number of values (or FMX.RS.ChartPanel.TRSChartValue items) in the collection. It provides the chart the ability to limit its size automatically as values are added.

Once the Count property equals the Limit property, every time you Add another value, the 0-th value is deleted. This property makes it easy to ensure your chart values do not grow unbounded and creates an automatic sliding window display ofthe Limit number of points. Note that this is not necessarily the last Limit number of points added, as sorting the values (Sorted) can make which value is deleted unpredictable.

If you want an unlimited number of chart values, set Limit to RSChartConsts|NoLimit .
 

Namespace: FMX.RS.ChartPanel

expandingSyntax

Delphi

published
  property Limit: Integer read FLimit write SetLimit default NoLimit;
 

Property Value

Type: Integer

expandingExamples

The following code shows how Limit property can be used to limit the chart to 100 values:

Delphi

var
   i: Integer;
 begin
   Chart1.Values.Limit := 100;
   for i := 0 to 1000 do
     Chart1.Values.Add( i );
   ShowMessage( IntToStr( Chart1.Values.Count ) ); // 100
 end;
   

expandingSee Also

Comments (0)

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