antvis/G2










The issue has been closed
tooltip 不显示 #5955
YY88Xu posted onGitHub
问题描述
import { Chart } from '@antv/g2';
const chart = new Chart({ container: 'container' });
chart.data([{"Date":"2023年10月","value":"20231031","TotalHc":1716,"CurrentHc":5496,"HcPercent":320.28,"start":5496,"end":5384,"BackgroundCurrentHc":5496},{"Date":"2023年11月","value":"20231130","TotalHc":1739,"CurrentHc":5524,"HcPercent":317.65,"start":5524,"end":5412,"BackgroundCurrentHc":5524},{"Date":"2023年12月","value":"20231211","TotalHc":1746,"CurrentHc":5505,"HcPercent":315.29,"start":5505,"end":5393,"BackgroundCurrentHc":5505},{"Date":"2023年06月","value":"20230630","TotalHc":1724,"CurrentHc":5580,"HcPercent":323.67,"start":5580,"end":5468,"BackgroundCurrentHc":5580},{"Date":"2023年09月","value":"20230930","TotalHc":1716,"CurrentHc":5485,"HcPercent":319.64,"start":5485,"end":5373,"BackgroundCurrentHc":5485},{"Date":"2023年08月","value":"20230831","TotalHc":1710,"CurrentHc":5486,"HcPercent":320.82,"start":5486,"end":5374,"BackgroundCurrentHc":5486},{"Date":"2023年07月","value":"20230731","TotalHc":1729,"CurrentHc":5580,"HcPercent":322.73,"start":5580,"end":5468,"BackgroundCurrentHc":5580}])
chart
.interval()
.encode('x', 'Date')
.encode('y', 'BackgroundCurrentHc')
.style('fill', 'gray')
.encode('series', () => 'TotalHc')
// chart
// .interval()
// .encode('x', 'Date')
// .encode('y', 'TotalHc')
// .encode('series', () => 'TotalHc')
// chart
// .interval()
// .encode('x', 'Date')
// .encode('y', ['end', 'start'])
// .encode('series', () => 'TotalHc')
chart
.interval()
.encode('x', 'Date')
.encode('y', 'CurrentHc')
.style('fill', 'pink')
.encode('series', () => 'CurrentHc')
chart.interaction('elementHighlightByColor', { background: true })
chart.render();
<img width="1505" alt="image" src="https://github.com/antvis/G2/assets/14836228/31482439-a01c-4ce2-84a3-aa0af9586058"> hover 第一条灰色的柱子不出现 tooltip, hover 粉色柱子才出现 tooltip, 为啥
重现链接
No response
重现步骤
<img width="1505" alt="image" src="https://github.com/antvis/G2/assets/14836228/34a81c8d-ca76-4088-9f65-925564429059">
预期行为
No response
平台
- 操作系统: [macOS, Windows, Linux, React Native ...]
- 网页浏览器: [Google Chrome, Safari, Firefox]
屏幕截图或视频(可选)
No response
补充说明(可选)
No response