Skip to main content

DxChartSeriesLegendItem.Visible Property

Specifies whether to display the series legend item.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
Boolean true

true, if the legend item is visible; false, if the legend item is hidden.

Remarks

The following code hides a series from the legend:

<DxChartLineSeries>
    ...
    <DxChartSeriesLegendItem Visible="false"/>
    ...
</DxChartLineSeries>
See Also