【发布时间】:2019-07-18 13:05:56
【问题描述】:
【问题讨论】:
标签: css svg charts overflow billboard.js
【问题讨论】:
标签: css svg charts overflow billboard.js
尝试使用clipPath 选项。
bb.generate({
...,
clipPath: false
});
编辑:
onafterinit 选项,将按预期工作。onafterinit: function() {
this.mainArea.node().parentNode
.setAttribute("clip-path",
this.getClipPath.bind({config:{clipPath:true}})(this.clipId)
);
}
【讨论】: