Element: <oj-gantt-dependency>

Oracle® JavaScript Extension Toolkit (JET)
15.1.0

F83698-01

Since:
  • 5.2.0
Module:
  • ojgantt

QuickNav

Attributes


JET Gantt Dependency

The oj-gantt-dependency element is used to declare properties for gantt dependency lines and is only valid as the child of a template element for the dependencyTemplate slot of oj-gantt.


<oj-gantt dependency-data="[[dependencyDataProvider]]">
  <template slot="dependencyTemplate">
    <oj-gantt-dependency
      predecessor-task-id="[[$current.data.predecessor]]"
      successor-task-id="[[$current.data.successor]]">
    </oj-gantt-dependency>
  </template>
</oj-gantt>


Usage

Signature:

interface GanttDependencyElement

Typescript Import Format
//To typecheck the element APIs, import as below.
import { GanttDependencyElement } from "ojs/ojgantt";

//For the transpiled javascript to load the element's module, import as below
import "ojs/ojgantt";

For additional information visit:


Attributes

predecessor-task-id :any

The identifier for the predecessor task. This must reference a task in Gantt.

(nullable) short-desc :string

The description of the dependency line. This is used for accessibility.
Default Value:
  • null

successor-task-id :any

The identifier for the successor task. This must reference a task in Gantt.

svg-class-name :string

A space delimited list of CSS style classes to apply to the dependency line.
Default Value:
  • ""

(nullable) svg-style :Partial<CSSStyleDeclaration>

The CSS style defining the style of the dependency line. Only SVG CSS style properties are supported.
Default Value:
  • {}

type :"finishStart"|"finishFinish"|"startStart"|"startFinish"

The type of dependency.
Supported Values:
Value Description
finishFinish predecessor task must finish before successor task can finish
finishStart predecessor task must finish before successor task can start
startFinish predecessor task must start before successor task can finish
startStart predecessor task must start before successor task can start
Default Value:
  • "finishStart"