Skip to main content

ChartAxisX.LimitVisiblePoints Property

Gets or sets whether the number of visible points is limited for the current X-axis.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

[DefaultValue(false)]
public bool LimitVisiblePoints { get; set; }

Property Value

Type Default Description
Boolean false

true, to limit the number of visible points; otherwise, false.

Remarks

You can limit the number of visible points by enabling the LimitVisiblePoints flag. The ChartAxisX.VisiblePointsCount property allows you to specify the maximum number of visible points.

If the number of all points exceeds the number of visible points, the chart X-axis allows end-users to perform navigation using its scroll bar.

Note

The LimitVisiblePoints property is in effect if the Chart’s argument meets the following requirements.

  • The Chart’s argument contains numeric data and the X-axis has the Discrete type.
  • The Chart’s argument contains date-time values and has the discrete group interval (Year, Quarter, Month, etc.).
See Also