zs
2025-05-07 251ac55b56c0ac330229cc217332e8d92381a69a
1
2
3
4
5
6
7
8
9
10
11
import G6 from '@antv/g6'
import './Tooltip.scss'
export default () =>
  new G6.Tooltip({
    offsetX: 35,
    offsetY: 30,
    itemTypes: ['node'],
    getContent: (e: any) => {
      return `<span>${e?.item.getModel().name}</span>`
    },
  })