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

OptionsToolTip.TooltipTitle Property

Gets or sets a tooltip’s title for the current gauge.

Namespace: DevExpress.XtraGauges.Win.Base

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

Declaration

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

Property Value

Type Default Description
String String.Empty

A string that specifies a tooltip’s title for the current gauge.

Property Paths

You can access this nested property as listed below:

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

Remarks

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

If the TooltipTitle property is set to an empty string, a tooltip’s title is generated according to the OptionsToolTip.TooltipTitleFormat property. Otherwise, the TooltipTitle property overrides the format specified by the OptionsToolTip.TooltipTitleFormat property.

To specify text for tooltips, use the OptionsToolTip.Tooltip or OptionsToolTip.TooltipFormat property.

See Also