如何在jointjs元素上添加文本字段

时间:2017-10-27 21:07:11

标签: javascript jointjs rappid

我是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)
});

enter image description here

0 个答案:

没有答案