ECHARTS 使用记录
1、Y轴如何显示百分比。
option = {
color: ['#3398DB'],
tooltip : {
trigger: 'item',
formatter: "{a} <br/>{b}:({c} %)"
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis : [
{
type : 'category',
data : ['24岁以下', '24岁到30岁', '31到35岁', '36岁到40岁', '41岁及以上'],
axisTick: {
alignWithLabel: true
}
}
],
yAxis : [
{
type : 'value',
min : 0,
max : 100,
axisLabel:{
formatter: '{value} %'
}
}
],
series : [
{
name:'用户数',
type:'bar',
barWidth: '60%',
data:[10,10,10,10,60],
itemStyle:{
normal:{
lable:{
show:true,
formatter:'{a}%'
}
}
}
}
]
};
还没有评论,来说两句吧...