欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

echarts 柱状图 柱顶部显示数字

程序员文章站 2022-07-02 11:53:09
...

echarts 柱状图 柱顶部显示数字

series : [
           {
               type:'bar',
               barWidth:50,
               data:[10, 52, 200, 334, 390, 330, 220],
               itemStyle: {
                   normal: {
                       label: {
                           show: true,      //开启显示
                           position: 'top', //在上方显示
                           textStyle: {     //数值样式
                               color: 'black',
                               fontSize: 16
                           }
                       }
                   }
               }
           }
       ],

echarts 柱状图 柱顶部显示数字


www.foryh.com



相关标签: echarts