GanttMessagesViewsSettingsBuilder
Methods
Day(System.String)
The text similar to "Day" displayed as Gantt "day" view title.
Parameters
value - System.String
The value that configures the day.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Views(vm => vm.Day("Value")))
)
End(System.String)
The text similar to "End" displayed in Gantt resize hint.
Parameters
value - System.String
The value that configures the end.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Views(vm => vm.End("Value")))
)
Month(System.String)
The text similar to "Month" displayed as Gantt "month" view title.
Parameters
value - System.String
The value that configures the month.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Views(vm => vm.Month("Value")))
)
Start(System.String)
The text similar to "Start" displayed in Gantt resize hint.
Parameters
value - System.String
The value that configures the start.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Views(vm => vm.Start("Value")))
)
Week(System.String)
The text similar to "Week" displayed as Gantt "week" view title.
Parameters
value - System.String
The value that configures the week.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Views(vm => vm.Week("Value")))
)
Year(System.String)
The text similar to "Year" displayed as Gantt "year" view title.
Parameters
value - System.String
The value that configures the year.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Views(vm => vm.Year("Value")))
)