| 12345678910111213141516171819202122 |
- import Theme from './theme';
- import lang from './aria-lang.CN';
- import { deepMix } from './util/common';
- var Global = {
- version: '3.8.9',
- scales: {},
- widthRatio: {
- column: 1 / 2,
- rose: 0.999999,
- multiplePie: 3 / 4
- },
- lineDash: [4, 4],
- lang
- };
- Global.setTheme = function (theme) {
- deepMix(Global, theme);
- };
- Global.setTheme(Theme);
- export { lang };
- export default Global;
|