生成一个爱心,为什么事件监听范围会扩大,不在图形内点击也会触发事件,github了解到是因为生成的默认rect过大,issus的解决方案也不能解决这个问题/
var zr = zrender.init(document.getElementById('main'));
var path = new zrender.path.createFromString(`M 10,30 A 20, 20 0, 0, 1 50, 30 A 20, 20 0, 0, 1 90, 30Q 90, 60 50, 90Q 10, 60 10, 30 z`,
{
cursor: 'pointer',
style: {
fill: 'red',
stroke: 'blue',
cursor: 'pointer'
}
},
onclick = function () {
console.log('click');
}
)
zr.add(path);