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.v24.1.dll
NuGet Package: DevExpress.Wpf.TreeMap
Declaration
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