option = {
tooltip: {
show: true
},
legend: {
data: ['销量']
},
xAxis: [{
type: 'category',
data: ["衬衫", "羊毛 衫", "雪纺 衫", "裤子", "高跟 鞋", "袜子"]
}],
yAxis: [{
type: 'value'
}],
series: [{
"name": "销量",
"type": "bar",
"data": [5, 201, 403, 102, 104, 205],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'top', //在上方显示
textStyle: { //数值样式
color: 'black',
fontSize: 16
},
formatter: function(v) { //让series 中的文字进行换行
//文字中遇到空格就换行,让value换行可以先把value变成字符串再slice操作
let text = v.value + "\n" + v.name.split(" ").join("\n");
return text;
}
}
}
},
}]
};
// 为echarts对象加载数据
myChart.setOption(option);
echarts label换行
最新推荐文章于 2025-02-06 17:20:00 发布