我是Jointjs和Rappid的新手。我有一个元素(在这种情况下为idea_1),我想在它的顶部添加一个注释框(如下图所示),以便用户可以存储有关该元素的信息。任何知道如何做的人。
joint.shapes.basic.Idea = joint.shapes.basic.Intention.extend({
defaults: joint.util.deepSupplement({
type: "basic.Idea",
attrs: {
".outer": {
stroke: 'black',
fill: '#FAF5AF'
},
".satvalue": {
transform: "translate(80, 40)"
},
".name": {
'ref-y': '0.5',
'text': 'Idea'
}
}
}, joint.shapes.basic.Intention.prototype.defaults)
});