zoukankan      html  css  js  c++  java
  • Echart饼图去掉Labelline标示线和label文字

    itemStyle : {
              normal : {
                label : {
                  show : false
                },
                labelLine : {
                  show : false
                }
              },
    
            },

    使用方式:

    series: [{
            name: '考生数量',
            type: 'pie',
            radius : ['50%', '70%'],
            hoverAnimation: true,
            itemStyle : {
              normal : {
                label : {
                  show : false
                },
                labelLine : {
                  show : false
                }
              },
            },
            data: echartData
          }]
  • 相关阅读:
    StackView
    横竖屏
    Html
    UILabel
    NSString
    NSPredicate|谓词
    iphone
    函数
    UIBezierPath
    UICollectionView
  • 原文地址:https://www.cnblogs.com/ranyonsue/p/14537847.html
Copyright © 2011-2022 走看看