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

ReportTimelineView.VisibleIntervalCount Property

Gets or sets the number of intervals in a group.

Namespace: DevExpress.XtraScheduler.Reporting

Assembly: DevExpress.XtraScheduler.v24.2.Reporting.dll

NuGet Package: DevExpress.Win.SchedulerReporting

#Declaration

[DefaultValue(10)]
[XtraSerializableProperty]
public int VisibleIntervalCount { get; set; }

#Property Value

Type Default Description
Int32 10

An integer representing a number of days.

#Remarks

The SchedulerPrintAdapter.TimeInterval specified for the print adapter, which provides data for the ReportTimelineView, is rendered into several groups, each containing the ReportTimelineView.VisibleIntervalCount items. Each group is split into sections with no more than the number of ReportTimelineView.VisibleIntervalColumnCount intervals in a section. The interval corresponds to the base scale of the Timeline View (use the ReportTimelineView.GetBaseTimeScale method to access the base scale).

The following screenshot shows the Timeline View Report with the VisibleIntervalCount property set to 7:

ReportTimelineView - VisibleIntervalCount, WinForms Scheduler

See Also