顯示數值在echarts圖表上

  1. 顯示數值在echarts圖表上,看label,比方說一張圖上有三個線,不是全部的都顯示,那麼,就能夠用下面作下判斷
    var seriesItem = {
      name: '',
      type: 'bar',
      itemStyle: {
        normal: {
          color: '#3a99d9'
        }
      },
    smooth: index === 3 ? true : false,//平滑的曲線,默認false折線
    symbolSize: index === 3 ? 12:0,//線上的點的大小
    data: [],
        label: {
            normal: {
                show: true,
                color: '#000',
                position: 'top',
                fontSize: 9
            }
        }
    
    };
seriesItemYoy.label.normal.show = false;
相關文章
相關標籤/搜索