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