Administrator
发布于 2024-07-01 / 36 阅读
0
0

甘特图

项目初始化

npm i @dhx/trial-gantt loader-utils

文档参考地址

详细文档

  • gantt_tasks 表 - 指定甘特任务

    • id - (string,number) 事件 ID。

    • start_date - (Date) 计划开始任务的日期。

    • text - (字符串) 任务的说明。

    • 进度 - (数字) 从 0 到 1 的数字,显示任务完成的百分比。

    • 持续时间 - (数字) 以当前时间刻度为单位的任务持续时间。

    • parent - (number) 父任务的 ID。

    • type - (string) 可选,任务的 类型

    • ReadOnly - (Boolean) 可选,可以将任务标记为 ReadOnly

    • editable - (boolean) 可选,可以将任务标记为 可编辑

  • gantt_links table - specifies the gantt dependency links

    • id - (string,number) the event id.

    • source - (number) the id of the source task.

    • target - (number) the id of the target task.

    • type - (string) the type of the dependency:

      • 0 - 'finish_to_start'

      • 1 - 'start_to_start'

      • 2 - 'finish_to_finish'

      • 3 - 'start_to_finish'

    • lag - (number) optional, task lag.

    • readonly - (boolean) optional, can mark link as readonly.

    • editable - (boolean) optional, can mark link as editable.


评论