请教,怎么把下方的类目名称的文字向左或向右偏移一定的位置?
配置项如下
option = {
title: {
text: 'Awesome Chart'
},
xAxis: [
{
splitLine:{
show:true
},
type: 'category',
axisLabel:{
rotate:-15,
interval: 0,
textStyle:{color: 'red',fontSize:15}
},
data: ['aaaa','bbbbb','ccccc','ddddddd']
}
],
yAxis: {},
series: [{
type: 'bar',
data:[220, 182, 191, 234, 290, 330, 310]
}]
};