antvis/G2

[Bug] Enterable tooltip cannot disappear when mouse leave chart from tooltip #3741

dengfuping posted onGitHub

  • I have searched the issues of this repository and believe that this is not a duplicate.

Edit on CodeSandbox

Steps to reproduce

  • Mouse leave chart from tooltip. image
Environment Info
g2 4.1.34
System MacOS 11.5.1
Browser Chrome 96.0.4664.93

<!-- generated by antv-issue-helper. DO NOT REMOVE -->


可以试试下面 V5 的版本有没有这个问题哈:

import { Chart } from '@antv/g2';

const data = [
  { year: '1991', value: 3 },
  { year: '1992', value: 4 },
  { year: '1993', value: 3.5 },
  { year: '1994', value: 5 },
  { year: '1995', value: 4.9 },
  { year: '1996', value: 6 },
  { year: '1997', value: 7 },
  { year: '1998', value: 9 },
  { year: '1999', value: 13 },
];

const chart = new Chart({
  container: 'container',
  autoFit: true,
});

chart
  .data(data)
  .encode('x', 'year')
  .encode('y', 'value')
  .scale('x', {
    range: [0, 1],
  })
  .scale('y', {
    domainMin: 0,
    nice: true,
  });

chart.line().label({
  text: 'value',
  style: {
    dx: -10,
    dy: -12,
  },
});

chart.point().style('fill', 'white').tooltip(false);

chart.interaction("tooltip", {enterable:true})

chart.render();
posted by pearmini 10 months ago

Fund this Issue

$0.00
Funded

Pull requests