Gantt View
The Gantt view shows data in a Gantt chart:
<gantt name="project-task-gantt" title="Task Planning" model="com.axelor.project.db.ProjectTask"
mode="year"
taskStart="plannedStartDate"
taskDuration="plannedDuration"
taskParent="parentTask"
taskSequence="sequence"
taskProgress="plannedProgress"
x-finish-to-start="finishToStartTaskSet"
x-start-to-start="startToStartTaskSet"
x-finish-to-finish="finishToFinishTaskSet"
x-start-to-finish="startToFinishaskSet">
<field name="name" />
<field name="project" />
<field name="user" />
</gantt>
Gantt view attributes:
Attribute |
Description |
|
name of the Gantt view |
|
title of the Gantt view |
|
fully qualified name of the domain model |
|
view mode, between |
|
name of the field of type date/datetime to be used as start time |
|
name of the duration field |
|
name of the field of type date/datetime to be used as end time |
|
name of the parent field |
|
name of the progress field |
|
name of a field to order tasks in sequence |
|
name of the user field related to task |
|
name of the M2M field containing tasks to finish before starting current task |
|
name of the M2M field containing tasks to start before starting current task |
|
name of the M2M field containing tasks to finish before finishing current task |
|
name of the M2M field containing tasks to start before finishing current task |