baseline

defines whether to display planned dates in the chart

boolean baseline;

Example

webix.ui({
  view: "gantt",
  baseline: true,
  ...
)};

Details

Note that there should be three additional properties in a task to show a planned date together with an actual one:

  • planned_start - a planned start date of a task
  • planned_duration - a planned duration of a task
  • planned_end - a planned end date of a task
See also
Back to top