G2
G2 copied to clipboard
Tooltip crosshairs 设置问题
- [x] I have searched the issues of this repository and believe that this is not a duplicate.
Reproduction link
https://g2.antv.vision/en/examples/line/basic#base
Steps to reproduce
chart.tooltip({
showCrosshairs: true, // 展示 Tooltip 辅助线
shared: true,
crosshairs: {
type: 'xy',
follow: true,
text: (type, defaultContent, items) => {
const tooltipCrosshairsText = { position: type === 'y' ? 'start' : 'end' };
if (type === 'x') {
const item = items[0];
tooltipCrosshairsText['content'] = item ? item.title : defaultContent;
} else {
tooltipCrosshairsText['content'] = `${defaultContent.toFixed(2)}`;
}
return tooltipCrosshairsText;
},
textBackground: {
padding: [4, 8],
style: {}
}
}
});
| Environment | Info |
|---|---|
| g2 | 4.1.16 |
| System | - |
| Browser | - |

什么问题?@visiky
多组柱状图时 辅助线可以居中吗
遇到同样的问题,这里 Y 轴的显示数值被遮挡了,另外还有个问题,能否设置 crosshairs 的辅助线 z-index ,让其始终置于顶层
什么问题?@visiky
y 轴上有一个 2.55, 但实际数值并不是

是不是已经修复了?
什么问题?@visiky
y 轴上有一个 2.55, 但实际数值并不是