Hide Comments
Hide Comments

Comments (0)

Controls whether the legend automatically updates its Lines property. If Fixed is True, the legend will not try to automatically fill the Lines property.

alert_cautionWarning

If you set the Fixed property at design-time, the legend will not draw any boxes or glyphs

Namespace: RSChartPanel

expandingSyntax

Delphi

published
  property Fixed: Boolean read FFixed write SetFixed default False;
 

Property Value

Type: Boolean

expandingExamples

The following code shows how to set the Lines and then use the Fixed property to prevent the legend from overwriting it:

Delphi

begin
   RSChartPanel1.Legend.Lines.Add('One');
   RSChartPanel1.Legend.Lines.Add('Two');
   RSChartPanel1.Legend.Lines.Add('Three');
   RSChartPanel1.Legend.Lines.Add('Four');
   RSChartPanel1.Fixed := True;
 end;

expandingSee Also

Comments (0)

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