задаёт новые значения для Diagram Editor
data | object | объект с полями данных |
const data = $$("diagram").serialize(true);
$$("editor").setValues(data);
Метод принимает объект со следующими полями::
const data = {
data: [
{ id: "start", type: "circle", value: "start", x: 0, y: 80 },
// другие блоки
],
links: [
{ source: "start", target: "search", id: 132 },
// другие ссылки
],
shapes: [
{
backgroundColor: "#65C0B7", fontColor: "#fff",
group: "block", id: "circle",
lineColor: "#65C0B7", name: "Circle",
svg: "svg_code"
},
// другие фигуры
],
item: {
height: 50, width: 100
},
linkItem: {
arrowSize: 6, arrow: false,
mode: "edges", backgroundColor: "magenta"
}
};
$$("editor").setValues(data);