0
是否可以在graphiti.js中創建嵌套對象圖形?如何使用Graphiti.js創建包含嵌套對象的圖形?
是否可以在graphiti.js中創建嵌套對象圖形?如何使用Graphiti.js創建包含嵌套對象的圖形?
目前不支持嵌套數字。
對不起
安德烈亞斯
但是我能,使用裝飾的方法做,效果很好。
ivr.shape.menu.Menu = graphiti.shape.basic.Rectangle.extend(
{
TitleLocator : graphiti.layout.locator.Locator.extend({
init: function(parent) { this._super(parent); },
relocate:function(index, figure){
var bb = this.getParent().getBoundingBox();
var tbb = figure.getBoundingBox();
figure.setPosition(bb.getWidth()/2-tbb.getWidth()/2,-10);
}
}),
init: function(strTitle) {
this.subElements = {};
this.subElements.title = new graphiti.shape.basic.Label(strTitle);
this.addFigure(this.subElements.title, new this.TitleLocator(this));
this.calculateSize();
}
}
這是多麼錯?
此外,你的子元素本身可以有子元素。 – Zerzio