Skip to main content
A newer version of this page is available. .
All docs
V20.2

SunburstLabelPresentation.LabelEffect Property

Gets or sets an effect that is applied to labels.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.TreeMap, DevExpress.Wpf.TreeMap

Declaration

public Effect LabelEffect { get; set; }

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