Skip to main content
All docs
V25.1
  • SunburstLabelPresentation.LabelEffect Property

    Gets or sets an effect that is applied to labels.

    Namespace: DevExpress.Xpf.TreeMap

    Assembly: DevExpress.Xpf.TreeMap.v25.1.dll

    NuGet Package: 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