DxChartAxisLabelBase<T>.Visible Property
Specifies axis labels’ visibility.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.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 labels for an argument axis:
<DxChartArgumentAxis>
<DxChartAxisLabel Visible="false" />
</DxChartArgumentAxis>
See Also