VChart icon indicating copy to clipboard operation
VChart copied to clipboard

[Feature] add event filter `type: 'region'` and `type: 'region-outside'`

Open xile611 opened this issue 9 months ago • 0 comments

What problem does this feature solve?

  1. 能够监听region内的事件
  2. 能够监听非region区域的事件

What does the proposed API look like?

vchart.on('click', { level: 'model', type: 'region' },  (e) => { });
vchart.on('click', { level: 'model', type: 'region-outside' },  (e) => { });

xile611 avatar Mar 04 '25 03:03 xile611