New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

RadGantt Object

The most important properties and methods of the RadGantt server-side object are described and explained in this article.

RadGantt Properties

The RadGantt properties are divided into three separate tables below:

  • list of user editing options (Table 1)
  • general properties (Table 2)
  • view settings properties (Table 3)

Table 1 lists the user editing options properties exposed by the RadGantt object.

NameTypeDescription
AllowColumnResizeboolGets or sets a value indicating whether the columns can be resized.
AllowDependencyDeleteboolGets or sets a value indicating whether the user is able to delete a dependency.
AllowDependencyInsertboolGets or sets a value indicating whether the user is able to insert a dependency.
AllowPercentCompleteDragboolGets or sets a value indicating whether the user is able to drag PercentComplete of a task.
AllowSortingboolGets or sets a value indicating whether sorting is enabled for the tree list part.
AllowTaskDeleteboolGets or sets a value indicating whether the user is able to delete a task.
AllowTaskInsertboolGets or sets a value indicating whether the user is able to insert a task.
AllowTaskMoveboolGets or sets a value indicating whether the user is able to move a task.
AllowTaskReorderboolGets or sets a value indicating whether the user is able to reorder a task.
AllowTaskResizeboolGets or sets a value indicating whether the user is able to resize a task.
AllowTaskUpdateboolGets or sets a value indicating whether the user is able to update a task.

Table 2 demonstrates some general properties of the RadGantt object.

NameTypeDescription
AssignmentsTelerik.Web.UI.Gantt. AssignmentCollectionGets the RadGantt assignments collection.
AutoGenerateColumnsboolGets or sets a value indicating whether bound columns are automatically created for each field in the data source. RadGantt will auto generate columns for the following fields: ID, Title, Start, End and PercentageComplete.
ClientTemplatestringGets or sets the HTML template of the RadGantt tasks.
ColumnsTelerik.Web.UI.Gantt. ColumnCollectionGets the available columns.
CultureSystem.Globalization.CultureInfoGets or sets the selected culture. Localization strings will be loaded based on this value.
CurrentTimeMarkerIntervalintGets or sets a value indicating the number of milliseconds after which the current time marker is updated.
CustomTaskFieldsTelerik.Web.UI.Gantt. CustomFieldCollectionGets the additional task fields.
DataBindingsTelerik.Web.UI.Gantt. GanttDataBindingsGets the RadGantt data bindings.
DependenciesTelerik.Web.UI.Gantt. DependencyCollectionGets the RadGantt tasks dependencies.
DisplayDeleteConfirmationboolGets or sets a value indicating whether a delete confirmation dialog should be displayed when the user deletes a task or a dependency.
EnablePdfExportboolGets or sets a value indicating whether the export to PDF functionality is enabled.
EnableResourcesboolGets or sets a value indicating whether the resources functionality is enabled.
ItemTypestringGets or sets the name of the data item type for strongly typed data binding.
KeyboardNavigationSettingsTelerik.Web.UI. GanttKeyboardNavigationSettingsGets the KeyboardNavigation settings.
ListWidthUnitGets or sets the RadGantt list width in pixels or percent.
LocalizationTelerik.Web.UI.GanttStringsGets the localization.
LocalizationPathstringGets or sets a value indicating where RadGantt will look for its .resx localization files.
ProviderTelerik.Web.UI. GanttProviderBaseGets or sets the provider instance to be used by RadGantt. Use this property with providers that are created at runtime. For ASP.NET providers defined in web.config use the Telerik.Web.UI.RadGantt.ProviderName property.
ProviderNamestringGets or sets the name of the current tasks provider used by RadGantt. The provider must be defined in the Gantt section of web.config.
RangeEndDateTime?Gets or sets the end date and time of the visible range on the currently selected view. The RangeEnd date will not be included within the visible range. Available also to be specified per view.
RangeStartDateTime?Gets or sets the start date and time of the visible range on the currently selected view. Available also to be specified per view.
ResourcesTelerik.Web.UI.Gantt. ResourceCollectionGets the collection of all resources attached to the RadGantt.
RowHeightUnitGets or sets the height of RadGantt rows.
SelectedDateDateTime?Gets or sets the date and time to which the timeline of the currently selected view is scrolled. Available also to be specified per view.
SelectedViewTelerik.Web.UI.GanttViewType enumerationGets or sets the current view type.
ShowCurrentTimeMarkerboolGets or sets a value indicating whether the current time marker is visible.
ShowFullTimeboolGets or sets a value indicating whether to display the complete day or the range between 8:00 AM and 5:00 PM.
ShowFullWeekboolGets or sets a value indicating whether to display all days of the week or the range between WorkWeekStart and WorkWeekEnd.
ShowTooltipboolGets or sets a value indicating whether to display a tooltip with summary of the task upon hovering.
SnapToGridboolGets or sets a value that determines whether the tasks will snap to the nearest grid cell in the timeline.
TasksTelerik.Web.UI.Gantt. TaskCollectionGets the collection of all tasks loaded within the RadGantt.
WebServiceSettingsTelerik.Web.UI.Gantt. WebServiceSettingsGets the web service settings to be used for binding this instance of RadGantt.
WorkWeekEndDayOfWeek enumerationGets or sets the last day of the work week.
WorkWeekStartDayOfWeek enumerationGets or sets the first day of the work week.

Table 3 lists the RadGantt's View Settings properties exposed in the API.

NameTypeDescription
DayViewTelerik.Web.UI.Gantt.DayViewSettingsGets the Day view settings.
WeekViewTelerik.Web.UI.Gantt.DayViewSettingsGets the Week view settings.
MonthViewTelerik.Web.UI.Gantt.DayViewSettingsGets the Month view settings.
YearViewTelerik.Web.UI.Gantt.DayViewSettingsGets the Year view settings.

RadGantt Methods

Table 4 lists the server-side methods exposed in the RadGantt API.

NameParametersReturn typeDescription
GetAllTasksnoneIList<Telerik.Web.UI.Gantt.ITask>Returns Depth First Search flattened list of tasks.
ImportXmlstringvoidPopulates the control from the specified MSProject XML file.

See Also