Skip to main content
A newer version of this page is available. .

DxChartAxisLabel.Visible Property

Specifies axis labels’ visibility.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
Boolean **true**

true to display labels; false to hide labels.

Remarks

The code below hides labels for an argument axis:

<DxChartArgumentAxis>
    <DxChartAxisLabel Visible="false" />
</DxChartArgumentAxis>        
See Also