JavaScript Scheduler Dependency Links with Custom Text

Links, which show dependencies between two JavaScript Scheduler events, can display text that follows the link path.

  • Note that only curved links are supported (see link shapes for more details).

  • The link type must be "FinishToStart".

  • The text will use the same color as the link.

This feature is available since version 2023.4.5820.

Example

You can specify the link text using the text property:

const links = [
  {
    id: 101,
    from: "main-4",
    to: "linked-4",
    type: "FinishToStart",
    text: "Link text"
  }
];