SunburstControl.LabelTextPattern Property
OBSOLETE
This property is obsolete now. Use TextPattern instead.
Gets or sets the pattern that formats the Sunburst’s label text.
Namespace: DevExpress.XtraTreeMap
Assembly: DevExpress.XtraTreeMap.v24.1.UI.dll
NuGet Package: DevExpress.Win.TreeMap
Declaration
[Browsable(false)]
[DefaultValue("{L}")]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This property is obsolete now. Use SunburstLabel.TextPattern instead.")]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
public string LabelTextPattern { get; set; }
Property Value
Type | Default | Description |
---|---|---|
String | "{L}" | The format string that configures the Sunburst’s label text. |
Remarks
The 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 label.
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