Type | Description | |||
String | A String expression that indicates the name of the days in the week, separated by spaces. |
The WeekDays property specifies the name of the days in the week for the following built-in tags:
The following VB sample assigns Romanian name for days in the week:
With G2antt1.Chart .WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata" End With
The following C++ sample assigns Romanian name for days in the week:
m_g2antt.GetChart().SetWeekDays( "Duminica Luni Marti Miercuri Joi Vineri Simbata" );
The following VB.NET sample assigns Romanian name for days in the week:
With AxG2antt1.Chart .WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata" End With
The following C# sample assigns Romanian name for days in the week:
axG2antt1.Chart.WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata";
The following VFP sample assigns Romanian name for days in the week:
With thisform.G2antt1.Chart .WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata" EndWith