Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxChart<T>.AutoHidePointMarkers Property

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

true to automatically hide series point markers; false to show all series point markers.

#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