Skip to main content
A newer version of this page is available. .

GaugeControl.ToolTipController Property

Gets or sets the tooltip controller component that controls the appearance, position and content of the hints displayed for the current gauge control.

Namespace: DevExpress.XtraGauges.Win

Assembly: DevExpress.XtraGauges.v19.2.Win.dll

Declaration

[DefaultValue(null)]
public ToolTipController ToolTipController { get; set; }

Property Value

Type Default Description
ToolTipController *null*

The ToolTipController component which controls the appearance and behavior of the hints displayed for the gauge control.

Remarks

The gauge control displays tooltips for gauge elements if the GaugeControl.ShowToolTips option is enabled.

By default, if the ToolTipController property is set to null, the appearance and behavior of tooltips is controlled by the default tooltip controller (it can be accessed via the ToolTipController.DefaultController static member or the DefaultToolTipController component). Changing the Default Tooltip Controller’s properties and handling its events affects how the tooltips for all the controls that don’t use custom tooltip controllers are displayed.

The ToolTipController property allows a custom ToolTipController component, which provides custom appearance and behavior settings for tooltips to be specified. Add a ToolTipController component to the form, and assign it to the ToolTipController property of all the controls whose tooltips must be controlled by that component.

For more information, see the Tooltips document.

See Also