SunburstControl.ToolTipTextPattern Property
Gets or sets the format string that forms text that the sunburst item tooltip shows.
Namespace: DevExpress.XtraTreeMap
Assembly: DevExpress.XtraTreeMap.v24.2.UI.dll
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