Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.Win.dll

NuGet Package: DevExpress.Win.Gauges

#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 Hints and Tooltips document.

See Also