monthOptions: { color: ['#FFD058'], xAxis: [ { data: ['报备组数', '来访组数', '大定套数', '草签套数', '正签套数'], axisLabel: { inside: false, textStyle: { color: 'rgba(255,255,255,0.5)', fontSize: 15, fontFamily: 'PingFang-SC-Regular,PingFang-SC' } }, axisTick: { show: false }, axisLine: { show: false } } ], yAxis: { axisLine: { show: false }, axisTick: { show: false }, axisLabel: { formatter: function () { return '' } }, splitLine: { show: false } }, grid: { left: '10%', right: '10%', bottom: '15%', top: '15%', containLabel: true }, series: [ { type: 'bar', itemStyle: { color: 'rgba(255,255,255,0.08)' }, barGap: '-100%', barWidth: '15%', data: [1, 1, 1, 1, 1] }, { name: '', type: 'bar', barWidth: '15%', data: [], itemStyle: { normal: { label: { formatter: function (val) { return formate(val.value) }, show: true, position: 'top', textStyle: { color: '#FFD058', fontSize: 15, fontFamily: 'PingFang-SC-Regular,PingFang-SC' } } } } } ], animationDuration: 2000 }
|