123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- var platform = '';
- if (typeof navigator !== 'undefined') {
-
- platform = navigator.platform || '';
- }
- var decalColor = 'rgba(0, 0, 0, 0.2)';
- export default {
- darkMode: 'auto',
-
- colorBy: 'series',
- color: ['#5470c6', '#91cc75', '#fac858', '#ee6666', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'],
- gradientColor: ['#f6efa6', '#d88273', '#bf444c'],
- aria: {
- decal: {
- decals: [{
- color: decalColor,
- dashArrayX: [1, 0],
- dashArrayY: [2, 5],
- symbolSize: 1,
- rotation: Math.PI / 6
- }, {
- color: decalColor,
- symbol: 'circle',
- dashArrayX: [[8, 8], [0, 8, 8, 0]],
- dashArrayY: [6, 0],
- symbolSize: 0.8
- }, {
- color: decalColor,
- dashArrayX: [1, 0],
- dashArrayY: [4, 3],
- rotation: -Math.PI / 4
- }, {
- color: decalColor,
- dashArrayX: [[6, 6], [0, 6, 6, 0]],
- dashArrayY: [6, 0]
- }, {
- color: decalColor,
- dashArrayX: [[1, 0], [1, 6]],
- dashArrayY: [1, 0, 6, 0],
- rotation: Math.PI / 4
- }, {
- color: decalColor,
- symbol: 'triangle',
- dashArrayX: [[9, 9], [0, 9, 9, 0]],
- dashArrayY: [7, 2],
- symbolSize: 0.75
- }]
- }
- },
-
-
- textStyle: {
-
-
-
- fontFamily: platform.match(/^Win/) ? 'Microsoft YaHei' : 'sans-serif',
-
- fontSize: 12,
- fontStyle: 'normal',
- fontWeight: 'normal'
- },
-
-
-
- blendMode: null,
- stateAnimation: {
- duration: 300,
- easing: 'cubicOut'
- },
- animation: 'auto',
- animationDuration: 1000,
- animationDurationUpdate: 500,
- animationEasing: 'cubicInOut',
- animationEasingUpdate: 'cubicInOut',
- animationThreshold: 2000,
-
- progressiveThreshold: 3000,
- progressive: 400,
-
-
-
-
-
- hoverLayerThreshold: 3000,
-
- useUTC: false
- };
|