Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | // Overview of Style Customization:https://www.echartsjs.com/en/tutorial.html#Overview%20of%20Style%20Customization export const colorSet = { default: ['#c23531', '#2f4554', '#61a0a8', '#d48265', '#91c7ae', '#749f83', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'], material: ['#F44336', '#E91E63', '#9C27B0', '#673AB7', '#3F51B5', '#2196F3', '#03A9F4', '#00BCD4', '#009688', '#4CAF50', '#8BC34A', '#CDDC39', '#FFEB3B', '#FFC107', '#FF9800', '#FF5722', '#795548', '#9E9E9E', '#607D8B'], }; export const registerColorSet = (name: string, colors: string[]): void => { colorSet[name] = colors; }; export const globalOptions = { textStyle: { color: '#333333', // does not work for legend text, tooltip, chart title fontSize: 12, fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif', }, title: { left: 'center', textStyle: { fontSize: 14, }, }, legend: { bottom: 10, }, grid: { borderWidth: 1, borderColor: '#ff0000', left: 80, right: 80, }, tooltip: { color: '#ffffff', backgroundColor: 'rgba(0, 0, 0, 0.8)', fontSize: 12, padding: [5, 10], }, color: colorSet.default, }; |