Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V24.1

DxShadowSettings Class

Contains settings for the element’s shadows.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public class DxShadowSettings :
    DxSettingsComponent<ShadowSettingsModel>

Remarks

Use DxShadowSettings objects to customize shadow settings of the following components:

The following properties are available:

Blur | Color | Opacity
Specify the shadow appearance.
HorizontalOffset | VerticalOffset
Specify the shadow position.

The following code snippet configures shadows for DxBarGauge tooltips:

<DxBarGauge Width="100%"
            Height="500px"
            StartValue="0"
            EndValue="100"
            Values="@Values">
    @* ... *@
    <DxTooltipSettings Enabled="true" Color="lightyellow" >
        <DxTextFormatSettings LdmlString="@LabelFormat" />
        <DxShadowSettings Blur="5" Color="green" Opacity="0.9"
                          HorizontalOffset="-20" VerticalOffset="10" />
    </DxTooltipSettings>
</DxBarGauge>

@code {
    double[] Values = new double[] { 47.27, 65.32, 84.59, 81.86, 99 };
    string LabelFormat = "##.# '%' ";
}

Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.ClientComponents.Internal.ShadowSettingsModel>
DxShadowSettings
See Also