возвращает объект настроек указанной фигуры
id | string | shape ID |
// получаем объект настроек фигуры "dot"
const dotConfig = $$("diagram1").getShape("dot");
Метод возвращает объект настроек фигуры, название которой передаётся в метод в качестве параметра:
webix.ui({
view: "diagram",
id: "diagram1",
shapes: [
{
id: "dot",
name: "Final node",
fontColor: "white",
lineColor: "#65C0B7",
backgroundColor: "#fff",
altBackgroundColor: "#65C0B7"
},
// другие фигуры
],
});
const dotConfig = $$("diagram1").getShape("dot");
/*
{
id: "dot",
name: "Final node",
fontColor: "white",
lineColor: "#65C0B7",
backgroundColor: "#fff",
altBackgroundColor: "#65C0B7"
}
*/
You can also get a collection of all the shapes (custom and built-in) via the getShapes
method.