Skip to main content
A newer version of this page is available. .
All docs
V21.2

SunburstLabelPresentation.TextWrapping Property

Gets or sets whether Sunburst label text wraps when it reaches the edges of the content area.

Namespace: DevExpress.Xpf.TreeMap

Assembly: DevExpress.Xpf.TreeMap.v21.2.dll

NuGet Package: DevExpress.Wpf.TreeMap

Declaration

public TextWrapping TextWrapping { get; set; }

Property Value

Type Description
TextWrapping

The value that specifies whether label text wraps.

Remarks

The following code specifies how Sunburst label text wraps:

<dxtm:SunburstControl LabelDisplayMode="Tangent">
    <dxtm:SunburstControl.LabelStyle>
        <Style TargetType="{x:Type dxtm:SunburstLabelPresentation}">
            <Setter Property="TextWrapping" Value="Wrap"/>
        </Style>
    </dxtm:SunburstControl.LabelStyle>
</dxtm:SunburstControl>
See Also