Hide Comments
Hide Comments

Comments (0)

Controls whether the function class should execute. When Enabled is True, the PerformFunction method will be called every time the ValueChanged IChartPanelListener method executes.

Namespace: RSChartFunction

expandingSyntax

Delphi

public
  property Enabled: Boolean read FEnabled write SetEnabled default True;
 

Property Value

Type: Boolean

expandingRemarks

When the function class executes the TargetChart values are deleted and then values are added by the function, which can be a lengthy process. Turn off the Enabled property to keep the function class from executing too often or if you want to preserve the TargetChart

expandingExamples

Delphi

RSChartFunction1.Enabled := False;
 try
   // code here to modify the SourceChart values
 finally
   RSChartFunction1.Enabled := True; // TargetChart is changed
 end; 

expandingSee Also

Comments (0)

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