.netCHARTING v10.5 Documentation
Example 


dotnetCHARTING Namespace > ChartArea Class : StartDayOfWeek Property
StartDayOfWeek Property (ChartArea)
Gets or sets a System.DayOfWeek enumeration that indicates the starting day of the week when DateGrouping is used.
Syntax
'Declaration
 
Public Property StartDayOfWeek As DayOfWeek
'Usage
 
Dim instance As ChartArea
Dim value As DayOfWeek
 
instance.StartDayOfWeek = value
 
value = instance.StartDayOfWeek
public DayOfWeek StartDayOfWeek {get; set;}
Example
[C#]
Chart.DateGrouping = TimeInterval.Weeks;
Chart.StartDayOfWeek = DayOfWeek.Monday;
 
//For complete code, see StartDayOfWeek.aspx sample.
[Visual Basic]
Chart.DateGrouping = TimeInterval.Weeks
Chart.StartDayOfWeek = DayOfWeek.Monday
 
'For complete code, see StartDayOfWeek.aspx sample.
Requirements

Target Platforms: 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

See Also