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

OptionsToolTip.Tooltip Property

Gets or sets a tooltip for the current gauge.

Namespace: DevExpress.XtraGauges.Win.Base

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

Declaration

[XtraSerializableProperty]
[DefaultValue("")]
public string Tooltip { get; set; }

Property Value

Type Default Description
String String.Empty

A string that specifies a tooltip for the current gauge.

Property Paths

You can access this nested property as listed below:

Object Type Path to Tooltip
BaseGaugeWin
.OptionsToolTip.Tooltip
CircularGauge
.OptionsToolTip.Tooltip
DigitalGauge
.OptionsToolTip.Tooltip
LinearGauge
.OptionsToolTip.Tooltip
StateIndicatorGauge
.OptionsToolTip.Tooltip

Remarks

Tooltips are enabled if the GaugeControl.ShowToolTips property is set to true.

If the Tooltip property is set to an empty string, a tooltip’s text is generated according to the OptionsToolTip.TooltipFormat property. Otherwise, the Tooltip property overrides the format specified by the OptionsToolTip.TooltipFormat property.

To specify a title for tooltips, use the OptionsToolTip.TooltipTitle or OptionsToolTip.TooltipTitleFormat property.

See Also