Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.2.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