Skip to main content
All docs
V25.1
  • DxRangeSelectorScaleLabel.Visible Property

    Specifies whether scale labels are visible.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(true)]
    [Parameter]
    public bool Visible { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true to display scale labels; otherwise, false.

    Remarks

    The following code snippet hides scale labels:

    Range Selector - Scale Label Visibility

    <DxRangeSelector Width="700px"
                     Height="350px"
                     Data="@Data"
                     ValueChangeMode="RangeSelectorValueChangeMode.OnHandleMove">
        <DxTitleSettings Text="Population by Country, 2023" />
        <DxRangeSelectorScale>
            <DxRangeSelectorScaleLabel Visible="false" />
        </DxRangeSelectorScale>
        <DxRangeSelectorChart>
            @* ... *@
        </DxRangeSelectorChart>
    </DxRangeSelector>
    
    See Also