Returns a collection of
DateTimeInterval-derived instances which define the date/time intervals that appear above the
PrimaryInterval.
The following sample code illustrates how to add additional intervals to the Timeline column headers of UltraGanttView control.
Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinGanttView
Private Sub addAdditionalIntervals()
Dim ganttAddInterval1 As New DateInterval(1, DateIntervalUnits.Days)
Me.ultraGanttView1.TimelineSettings.AdditionalIntervals.Add(ganttAddInterval1)
ganttAddInterval1.HeaderTextFormat = "dddd"
ganttAddInterval1.HeaderTextFormatStyle = TimelineViewHeaderTextFormatStyle.FullRangeAdjusted
End Sub
'Declaration
Public ReadOnly Property AdditionalIntervals As Infragistics.Win.UltraWinSchedule.DateTimeIntervalsCollection
using Infragistics.Win.UltraWinSchedule;
using Infragistics.Win.UltraWinGanttView;
private void addAdditionalIntervals()
{
DateInterval ganttAddInterval1 = new DateInterval(1, DateIntervalUnits.Days);
this.ultraGanttView1.TimelineSettings.AdditionalIntervals.Add(ganttAddInterval1);
ganttAddInterval1.HeaderTextFormat = "dddd";
ganttAddInterval1.HeaderTextFormatStyle = TimelineViewHeaderTextFormatStyle.FullRangeAdjusted;
}
'Declaration
Public ReadOnly Property AdditionalIntervals As Infragistics.Win.UltraWinSchedule.DateTimeIntervalsCollection
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
Reference
Timeline Class
Timeline Members
AdditionalIntervals property (UltraTimelineView class)