property Chart.MonthNames as String
Retrieves or sets a value that indicates the list of month names, separated by space.

TypeDescription
String A String expression that indicates the name of the months in the year, separated by spaces.
By default, the MonthNames property is "January February March April May June July August September October November December". The order of months  is January, February, and so on. Use the MonthNames property to specify the name of the months in the year. The FormatDate property formats a date. Use the AMPM property to specify the name of the AM and PM indicators. Use the Label property to specify the label being displayed in the level. Use the Label property to specify the predefined format for a level based on the unit time. Use the ToolTip property to specify the tool tip being displayed when the cursor hovers the level. Use the FirstWeekDay property to specify the first day in the week.

The MonthNames property specifies the name of the months in the year for the following built-in tags:

The following VB sample assigns Romanian name for months in the year:

With Gantt1.Chart
    .MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie"
End With

The following C++ sample assigns Romanian name for months in the year:

m_gantt.GetChart().SetMonthNames( "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie" );

The following VB.NET sample assigns Romanian name for months in the year:

With AxGantt1.Chart
    .MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie"
End With

The following C# sample assigns Romanian name for months in the year:

axGantt1.Chart.MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie";

The following VFP sample assigns Romanian name for months in the year:

With thisform.Gantt1.Chart
	.MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie"
EndWith