g2.js 432 Bytes
Newer Older
1 2 3 4 5
// 全局 G2 设置
import G2 from 'g2';

G2.track(false);

afc163's avatar
afc163 committed
6 7 8 9
const colors = [
  '#8543E0', '#F04864', '#FACC14', '#1890FF', '#13C2C2', '#2FC25B', '#fa8c16', '#a0d911',
];

10 11 12
const config = {
  ...G2.Theme,
  defaultColor: '#1089ff',
afc163's avatar
afc163 committed
13 14 15 16
  colors: {
    default: colors,
    intervalStack: colors,
  },
17 18 19 20 21 22 23 24 25 26
  tooltip: {
    background: {
      radius: 4,
      fill: '#000',
      fillOpacity: 0.75,
    },
  },
};

G2.Global.setTheme(config);