Skip to main content

SunburstControl.ToolTipTextPattern Property

Gets or sets the format string that forms text that the sunburst item tooltip shows.

Namespace: DevExpress.XtraTreeMap

Assembly: DevExpress.XtraTreeMap.v23.2.UI.dll

NuGet Package: DevExpress.Win.TreeMap

Declaration

[DefaultValue("{L}: {V}")]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
public string ToolTipTextPattern { get; set; }

Property Value

Type Default Description
String "{L}: {V}"

The format string that configures the sunburst item’s tooltip text.

Remarks

The tooltip text pattern can contain plain text, special placeholders and format specifiers. For example, you can use the “Value: {V:F2}” format string to show a value with two signs after a comma in the item tooltip.

The following table lists the placeholders you can use in patterns:

Placeholder Description
{L} Shows the sunburst item label.
{V} Shows the sunburst item value.
See Also