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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
| { backgroundColor: '', title: { text: '' }, tooltip: { trigger: 'axis', formatter(params) { var relVal = params[0].axisValueLabel; for (var i = 0, l = params.length; i < l; i++) { relVal += '<br/>' + params[i].marker + params[i].seriesName + ' : ' + parseFloat(params[i].value[1]).toFixed(2) } return relVal; }, axisPointer: { type: 'shadow' }, }, grid: { left: '5%', right: '8%', bottom: '5%', top: '20%', containLabel: true, }, legend: { right: 10, top: 12, textStyle: { color: "#fff" }, itemWidth: 12, itemHeight: 10, }, xAxis: { type: 'time', boundaryGap: false, axisLabel: { formatter: function (value) { return parseTime(value, '{h}:{m}'); }, color: "#FFF", fontSize: 7, }, nameTextStyle: { color: '#d4ffff' }, axisLine: { lineStyle: { color: '#0B4CA9' } }, }, yAxis: { type: 'value', scale: true, axisLabel: { fontSize: 7, fontFamily: 'Microsoft YaHei', color: '#d4ffff', }, nameTextStyle: { color: '#d4ffff' }, position: 'left', axisLine: { lineStyle: { color: '#0B4CA9' } }, splitLine: { lineStyle: { color: "#0B4CA9", } } }, series: [] }
|