blob: 74d9ce0611b096180759d28fb921fafc20641cbc [file] [log] [blame]
/*
title: Bar with Background
category: bar
titleCN: 带背景色的柱状图
difficulty: 0
*/
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [120, 200, 150, 80, 70, 110, 130],
type: 'bar',
showBackground: true,
backgroundStyle: {
color: 'rgba(180, 180, 180, 0.2)'
}
}]
};