DxChartSeriesLegendItem.Visible Property
In This Article
Specifies whether to display the series legend item.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
#Remarks
The following code hides a series from the legend:
Razor
<DxChartLineSeries>
...
<DxChartSeriesLegendItem Visible="false"/>
...
</DxChartLineSeries>
See Also