G6 icon indicating copy to clipboard operation
G6 copied to clipboard

自定义矩形形状的节点,聚焦节点focusItem的时候没有定位到中心(上下左右间距不一样)

Open wuzengduo opened this issue 1 month ago • 4 comments

Describe the bug

自定义矩形形状的节点,聚焦节点focusItem的时候没有定位到中心(左右间距不一样)

Your Example Website or App

https://g6.antv.antgroup.com/examples/item/customNode/#card

在https://g6.antv.antgroup.com/examples/item/customNode/#card这里添加聚焦的逻辑: function handleNodeClick(event) { const item = event.item; // animately move the graph to focus on the item. // the second parameter controlls whether move with animation, the third parameter is the animate configuration graph.focusItem(item, true, { easing: 'easeCubic', duration: 500, }); }

// listen to the node click event graph.on('node:click', handleNodeClick);

image

Steps to Reproduce the Bug or Issue

  1. 点击一个节点
  2. 聚焦到该节点,上下左右间距不一样 image

Expected behavior

期望该节点在中心,即上下左右间距一样,实际上左右间距不一样

Screenshots or Videos

No response

Platform

  • OS: [e.g. macOS, Windows, Linux]
  • Browser: [e.g. Chrome, Safari, Firefox]
  • Version: [e.g. 91.1]

Additional context

No response

wuzengduo avatar May 13 '24 10:05 wuzengduo