DxRangeSelectorScaleLabel.Visible Property
Specifies whether scale labels are visible.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
The following code snippet hides scale labels:
<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