ChartToolbarVisible: Boolean;
ChartToolbarVisible: boolean;
The ChartToolbarVisible property determines whether the toolbar is displayed for the Chart panel.
Available Values:
True. Default value. For the Chart panel the toolbar is displayed.
False. For the Chart panel the toolbar is not displayed, the Chart header is displayed instead.
Executing the example requires a form with the following components:
LanerBox with the LanerBox1 identifier.
LanerResultsBox with the LanerResultsBox1 identifier.
UiErAnalyzer with the UiErAnalyzer1 identifier. This component must contain loaded workbook of the time series database and be the data source for LanerBox1 and LanerResultsBox1 components.
Sub UserProc;
Begin
LanerResultsBox1.ChartToolbarVisible := False;
End Sub UserProc;
After executing the example in the LanerResultsBox1 component the toolbar for the Chart panel is hidden.
The requirements and result of the Fore.NET Example execution match with those in the Fore Example. Instead of Fore components use their Fore.NET analogs.
Sub UserProc();
Begin
lanerResultBoxNet1.ChartToolbarVisible := False
End Sub UserProc;
See also: