light-chart
Version:
Charts for mobile visualization.
21 lines (17 loc) • 351 B
JavaScript
const Theme = require('./theme');
const Util = require('./util/common');
const Global = {
version: '3.4.0',
scales: {},
widthRatio: {
column: 1 / 2,
rose: 0.999999,
multiplePie: 3 / 4
},
lineDash: [ 4, 4 ]
};
Global.setTheme = function(theme) {
Util.deepMix(this, theme);
};
Global.setTheme(Theme);
module.exports = Global;