Skip to main content
All docs
V23.2

SunburstLabelPresentation.TextTrimming Property

Gets or sets the mode that defines how label text is trimmed when it is larger than the content area.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Package: DevExpress.Wpf.TreeMap

Declaration

public TextTrimming TextTrimming { get; set; }

Property Value

Type Description
TextTrimming

The mode that defines how text is trimmed.

Remarks

The following code specifies how Sunburst chart labels are trimmed when the text is larger than the content area:

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