VTable icon indicating copy to clipboard operation
VTable copied to clipboard

[Feature] 支持表格实例 RESIZE 事件监听

Open jtwang7 opened this issue 10 months ago • 0 comments

What problem does this feature solve?

支持监听表格实例的 resize 变化,可通过传入回调定制表格实例 resize 过程中的响应操作。 可能触发表格实例 resize 的场景:

  1. 拖动画布改变图表宽高
  2. 浏览器宽高变化,分辨率改变
  3. 画布新增图例,label 等影响布局的组件
  4. ......

What does the proposed API look like?

chartInstance.on("AFTER_RESIZE", () => { xxx }) chartInstance.off("AFTER_RESIZE", () => { xxx })

jtwang7 avatar Mar 14 '25 09:03 jtwang7