echars 柱状图靠左_echart 柱状图如何让y轴文字靠左显示,series上文字右对齐显示...

该博客主要介绍了如何使用Echarts库配置柱状图,使得y轴的文字靠左显示,同时系列上的文字保持右对齐。通过调整Echarts的option对象中的yAxis.axisLabel和series.label属性,可以实现定制化的图表展示效果。内容包括示例代码,展示了具体的配置细节。
摘要由CSDN通过智能技术生成

option = {

title: {

text: '世界人口总量',

subtext: '数据来自网络'

},

tooltip: {

trigger: 'axis',

axisPointer: {

type: 'shadow'

}

},

legend: {

data: ['2011年', '2012年']

},

grid: {

left: '3%',

right: '4%',

bottom: '3%',

containLabel: true

},

xAxis: {

type: 'value',

boundaryGap: [0, 0.01],

splitLine: { // 网格线

show: false

}

},

yAxis: {

type: 'category',

data: ['巴西', '印尼', '美国', '印度', '中国', '世界人口(万)'],

axisLabel: { // y轴文字的配置

show: true,

interval: 0,

textStyle: {

align: 'right',

},

},

},

series: [

{

name: '2011年',

type: 'bar',

data: [18203, 23489, 29034, 104970, 131744, 630230],

label: {

show: true, // 开启显示

position: 'right', // 在上方显示

textStyle: {

fontSize: 15

}

}

},

{

name: '2012年',

type: 'bar',

data: [19325, 23438, 31000, 121594, 134141, 681807],

label: {

show: true, // 开启显示

position: 'right', // 在上方显示

textStyle: {

fontSize: 15

}

}

}

]

};

3b77fdfcab1e21ef7bcb2dc769f35d4c.png

这种效果的

谢谢。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值