getLinks

возвращает коллекцию связей между блоками

DataCollection getLinks();
DataCollectionколлекция связей

Example

webix.ui({
  view: "diagram",
  id: "diagram1"
  links: [
    // другие связи
    { source:"1.1.1", target:"1.1.1.1", mode:"child" },
    { source:"1.1.1.1", target:"1.1.1.2", mode:"sibling" },
  ],
});
 
const linksCollection = $$("diagram1").getLinks();

Details

С коллекцией можно работать через специальное API. Например, вы можете сериализовать коллекцию, чтобы получить массив связей:

const linksArray = $$("diagram1").getLinks().serialize();
/*
[
  { id: 161968034646, source: "core", target: "diagram" },
  { 
    $arrowCss: "batman", 
    arrow: ["300,101", "298,104"], 
    id: 1619680346462
    source: "core"
    target: "kanban"
  }
  // ...
]
*/
See also
Наверх