DxChart<T>.AutoHidePointMarkers Property
In This Article
Specifies whether DxChart<T> automatically hides series point markers to reduce visual clutter.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(true)]
[Parameter]
public bool AutoHidePointMarkers { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
#Remarks
DxChart<T> automatically hides point markers in the following cases:
- In a single-series chart when at least half of all point markers are overlapped by adjacent markers.
- In a multi-series chart when all point markers of a series are overlapped by adjacent markers and markers of other series.
Set the AutoHidePointMarkers
property to false
to show all series point markers.
Razor
<DxChart Data="@SalesData" AutoHidePointMarkers="false">
@*...*@
</DxChart>
See Also