Skip to main content
All docs
V25.1
  • DxRangeSelector.Width Property

    Specifies the component width.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public string Width { get; set; }

    Property Value

    Type Description
    String

    The width in CSS units.

    Remarks

    Use Height and Width properties to specify the size of the <DxRangeSelector> component.

    <DxRangeSelector Width="800px"
                     Height="400px"
                     Data="@Data">
        <DxTitleSettings Text="Population by Country">
            <DxSubtitleSettings Text="2023" />
        </DxTitleSettings>
        <DxRangeSelectorChart>
            @* ... *@
        </DxRangeSelectorChart>
    </DxRangeSelector>
    
    See Also