站内搜索:
首页 >> 前端 >> 内容
Echart如何显示百分比

时间:2017/3/27 9:55:00

Echart如何显示百分比。Echart 显示百分比需要更改的地方有三个:
1. Y轴

yAxis : [?{ 
            axisLabel: {
                formatter: '{value} %'
            }
        }?]
tooltip
 tooltip: {
        formatter: '{c}%'
    }
X
series: [{
        itemStyle: {
            normal: {
                label: {
                    show: true,
                    positiong: 'top',
                    formatter: '{c}%'
                }
            }
        }
     }]

  • 上一篇:【CSS进阶】伪元素的妙用--单标签之美
  • 下一篇:网页性能优化方案整理
  • 返回顶部