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 42 43 44 45 46 47 48 49 50 51 52
| tooltip: { show: true, trigger: 'item', triggerOn: 'mousemove', showContent: true, alwaysShowContent: true, showDelay: 0, hideDelay: 100, enterable: false, renderMode: 'html', confine: false, appendToBody: false, className: 'echarts-tooltip echarts-tooltip-dark' transitionDuration: 0.4, position: ['50%', '50%'], formatter: '{b0}: {c0}<br />{b1}: {c1}', backgroundColor: 'rgba(50,50,50,0.7)', borderColor: '#333', borderWidth: 0, padding: [ 5, 10, 5, 10, ], textStyle: { color: '#fff', fontStyle: 'normal', fontWeight: 'normal', fontFamily: 'sans-serif', fontSize: 14, lineHeight: 56, width: 15, height: 15, textBorderColor: '#333', textBorderWidth: 2, textBorderType: 'solid', textBorderDashOffset: 5, textShadowColor: 'transparent', textShadowBlur: 0, textShadowOffsetX: 0, textShadowOffsetY: 0, overflow: 'none', textShadowBlur: 0, ellipsis: '这里是末尾显示的文本', extraCssText: 'box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);', order: 'seriesAsc', }, extraCssText: 'box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);' , order:'seriesAsc', };
|