您需要使用包含文本元素的新 SVG 标记创建自定义形状,该文本元素包含<tspan>
您想要的每个单词。您可以调整标准 Rect 元素的标记。给每个元素一个不同的类名,例如将<text/>
Rect 标记中的元素 替换为<text><tspan class="word1"/><tspan class="word2"/></text>
. 形状定义如下所示:
joint.shapes.my.twoTextRect = joint.shapes.basic.Generic.extend({
markup: '<g class="rotatable"><g class="scalable"><rect/></g><text><tspan class="word1"></tspan> <tspan class="word2"></tspan></text></g>',
defaults: joint.util.deepSupplement({
type: 'my.twoTextRect',
attrs: {
rect: { fill: 'white', stroke: 'black', 'stroke-width': 1, 'follow-scale': true, width: 160, height: 35 },
text: { ref: 'rect' },
'.word1': { 'font-size': 12 },
'.word2': { 'font-size': 8 }
},
size: { width: 160, height: 35 }
}, joint.shapes.basic.Generic.prototype.defaults)
});
然后创建你的形状实例:
var rectShape = new joint.shapes.my.twoTextRect();
要设置 SVG 元素的文本,<tspan>
您可以使用
rectShape.attr('.word1/text', 'word 1');
rectShape.attr('.word2/text', 'word 2');
这会产生一个如下所示的元素:
您可以像这样克隆元素:
var clone = rectShape.clone().translate(520, 10).attr({'.word1': {text: 'clone1'}, '.word2': {text: 'clone2' }});
这产生了一个新元素: