echarts修改柱状图的宽度
series-bar. barWidth = 自适应
numberstring
柱条的宽度,不设时自适应。
可以是绝对值例如 40 或者百分数例如 ‘60%’。百分数基于自动计算出的每一类目的宽度。
在同一坐标系上,此属性会被多个 ‘bar’ 系列共享。此属性应设置于此坐标系中最后一个 ‘bar’ 系列上才会生效,并且是对此坐标系中所有 ‘bar’ 系列生效。
series: [
{
name: 'aaa',
type: 'bar',
stack: '广告',
itemStyle: {
normal: {
color: '#6485CA',
// barBorderRadius: [10, 10, 0, 0], //依次表示 左上,右上,右下、左下
label: {
show: false, //开启显示
position: 'top', //在上方显示
textStyle: { //数值样式
color: '#aaa',
fontSize: 14
}
}
}
},
data: investmentCompleteRate
},
{
name: 'bbb',
type: 'bar',
barWidth:'30%',
stack: '广告',
itemStyle: {
normal: {
color: '#FF774B',
barBorderRadius: [10, 10, 0, 0], //依次表示 左上,右上,右下、左下
label: {
show: false, //开启显示
position: 'top', //在上方显示
textStyle: { //数值样式
color: '#aaa',
fontSize: 14
}
}
}
},
data: budgetCompleteRate
},
]