Skip to main content
All docs
V25.1
  • 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.v25.1.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