我必须在某个地方错过它,但是如何在Joint.js中定义一个细线笔画?我的形状和线条没有缩放,无论我做什么,一切似乎都呈现2px抗锯齿。
这是我的默认链接样式:
joint.shapes.myBase.Link = joint.dia.Link.extend({
defaults: joint.util.deepSupplement({
type: 'myBase.Link',
router: {
name: 'manhattan'
},
labels: [{
attrs: {
text: {
'font-size': 12
}
}
}],
attrs: {
'.marker-target': { d: 'M 10 0 L 0 5 L 10 10 z' },
'.marker-arrowhead-group-source': { display: 'none' }
}
}, joint.dia.Link.extend.prototype.defaults)
});
这是我的CSS:
.connection {
stroke-width: 1;
stroke-opacity: 1;
fill: none;
}