在BizCharts中自定义后出现了意外的工具提示字段

时间:2019-02-19 17:12:09

标签: javascript reactjs bizcharts g2

我正在使用BizChartsG2的实际版本)。我希望自定义工具提示。

但是,自定义后,它会显示意外字段。

有办法摆脱那些意外的领域吗?

原始(正确的字段)

Codepen demo

<Geom type="intervalStack" position="State*Population" color={'Age'} />

enter image description here

tooltip中添加了Geom(意外字段)

Codepen demo

<Geom type="intervalStack" position="State*Population" color={'Age'}
      tooltip={['State*Age*Population', (State, Age, Population) => {
        return {
          name: Age,
          title: State,
          value: Population
         };
      }]}
/>

enter image description here

0 个答案:

没有答案