30 lines
806 B
JavaScript
30 lines
806 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: 80, right: 0
|
|
},
|
|
tooltip: {
|
|
backgroundColor: 'rgba(14, 51, 111, 0.9)', borderColor: '#1A6ABC', textStyle: {color: '#fff'},
|
|
},
|
|
yAxis: {
|
|
type: 'category',
|
|
axisLabel: {color: '#fff', fontSize: 14, margin: 23},
|
|
axisTick: {show: false},
|
|
axisLine: {show: false},
|
|
},
|
|
xAxis: {
|
|
nameGap: 23, minInterval: 1,
|
|
splitLine: {lineStyle: {color: 'rgba(255,255,255,.2)', type: 'dashed'}},
|
|
axisLabel: {color: '#fff', fontSize: 14},
|
|
},
|
|
daemon: {
|
|
type: 'bar', barWidth: 10, barGap: '40%', stack: 'stack',
|
|
showBackground: true,
|
|
backgroundStyle: {color: 'rgba(123, 165, 255, .2)'}
|
|
}
|
|
}
|