Represents a scale type generating appropriate Gantt Chart scale intervals for a specific scale in GanttChartView control.
Namespace:
DlhSoft.Windows.ControlsAssembly: DlhSoft.ProjectData.GanttChart.LightWPF.Controls (in DlhSoft.ProjectData.GanttChart.LightWPF.Controls.dll)
Syntax
| C# |
|---|
public enum ScaleType |
| Visual Basic (Declaration) |
|---|
Public Enumeration ScaleType |
Members
| Member name | Description | |
|---|---|---|
| Custom |
Custom scale, defined by setting Intervals property of the Scale object manually.
| |
| Years |
Year intervals (starting January 1, each year).
| |
| Quarters |
Year quarter intervals (starting January 1, April 1, July 1, and October 1, each year).
| |
| Months |
Month intervals (starting 1st day of each month).
| |
| Weeks |
Week intervals (starting on each Sunday).
| |
| WeeksStartingMonday |
Week intervals (starting on each Monday).
| |
| WeeksStartingSaturday |
Week intervals (starting on each Saturday).
| |
| Days |
Day intervals (starting 12 AM each day).
| |
| Hours |
Hour intervals (starting at minute 00 each hour).
| |
| NonworkingTime |
Nonworking time intervals as resulting from negating WorkingWeekStart-WorkingWeekFinish and WorkingDayStart-WorkingDayFinish periods, combined with NonworkingIntervals definition of GanttChartView control (included by default).
| |
| CurrentTime |
Current time interval, between TimelinePageStart property value of GanttChartView control and current date and time (included by default).
| |
| FutureTime |
Future time interval, between current date and time and TimelinePageFinish property value of GanttChartView control.
|