Skip to main content

OptionsToolTip.Tooltip Property

Gets or sets a tooltip for the current gauge.

Namespace: DevExpress.XtraGauges.Win.Base

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

NuGet Package: DevExpress.Win.Gauges

Declaration

[DefaultValue("")]
[XtraSerializableProperty]
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

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