24 lines
		
	
	
		
			660 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			660 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export default {
 | 
						|
  legend: {
 | 
						|
    right: 0, itemGap: 16,
 | 
						|
    textStyle: {color: '#fff', padding: [0, 0, 0, 8], fontSize: 14},
 | 
						|
    itemWidth: 16, itemHeight: 5
 | 
						|
  },
 | 
						|
  grid: {
 | 
						|
    left: 50, right: 0
 | 
						|
  },
 | 
						|
  tooltip: {
 | 
						|
    // trigger: 'axis', backgroundColor: 'rgba(14, 51, 111, 0.9)', borderColor: '#1A6ABC',
 | 
						|
    textStyle: {color: '#fff'}
 | 
						|
  },
 | 
						|
  yAxis: {
 | 
						|
    nameGap: 23, minInterval: 1,
 | 
						|
    // splitLine: {lineStyle: {color: 'rgba(255,255,255,.2)', type: 'dashed'}},
 | 
						|
    axisLabel: {color: '#fff'}, axisPointer: {show: false}
 | 
						|
  },
 | 
						|
  axisPointer: {
 | 
						|
    type: 'none', show: true, triggerTooltip: false,
 | 
						|
  },
 | 
						|
  daemon: {type: 'bar', barWidth: 12, stack: 'stack'}
 | 
						|
}
 |