SunburstLabelPresentation.LabelEffect Property
Gets or sets an effect that is applied to labels.
Namespace: DevExpress.Xpf.TreeMap
Assembly: DevExpress.Xpf.TreeMap.v24.1.dll
NuGet Package: DevExpress.Wpf.TreeMap
Declaration
Property Value
Type | Description |
---|---|
Effect | An effect that is applied to labels. |
Remarks
The following markup applies DropShadowEffect to Sunburst chart labels:
<dxtm:SunburstControl LabelDisplayMode="Tangent">
<dxtm:SunburstControl.LabelStyle>
<Style TargetType="{x:Type dxtm:SunburstLabelPresentation}">
<Setter Property="LabelEffect">
<Setter.Value>
<DropShadowEffect/>
</Setter.Value>
</Setter>
</Style>
</dxtm:SunburstControl.LabelStyle>
</dxtm:SunburstControl>
The following image demonstrates the results:
See Also