我正在使用BizCharts(G2的实际版本)。我希望自定义工具提示。
但是,自定义后,它会显示意外字段。
有办法摆脱那些意外的领域吗?
原始(正确的字段)
<Geom type="intervalStack" position="State*Population" color={'Age'} />
在tooltip
中添加了Geom
(意外字段)
<Geom type="intervalStack" position="State*Population" color={'Age'}
tooltip={['State*Age*Population', (State, Age, Population) => {
return {
name: Age,
title: State,
value: Population
};
}]}
/>