g2.js 256 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 全局 G2 设置
import G2 from 'g2';

G2.track(false);

const config = {
  ...G2.Theme,
  defaultColor: '#1089ff',
  tooltip: {
    background: {
      radius: 4,
      fill: '#000',
      fillOpacity: 0.75,
    },
  },
};

G2.Global.setTheme(config);