echarts實現折線面積圖

var option4 = {
  // legend: {
  //   data: ['吃飯', '睡覺', '打豆豆'],
  //   icon: 'rect',
  //   top: 22,
  //   right: 24,
  //   itemGap: 15,
  //   itemWidth: 10,
  //   itemHeight: 10,
  //   textStyle: {
  //     // padding: [0, 0, 0, 5],
  //     color: 'rgba(0,0,0,0.87)'
  //   }
  // },
  color: ['#289df5', '#fbc01b', '#ff5050'],
  grid: {
    left: '4%',
    right: '6%',
    bottom: '3%',
    containLabel: true
  },
  tooltip: {
    trigger: 'axis',
    // borderWidth:'0',
    borderColor:'#85b3f1',
    backgroundColor:'rgba(133,179,241,1)',//經過設置rgba調節背景顏色與透明度
    axisPointer: {
      animation: false
    },
    formatter: function (params) {
      var htmlStr = '';
      htmlStr += '<div><span style="color:#fff;">' + params[0].name + '</span>';
      for(var i=0;i<params.length;i++){
        htmlStr += ':<span style="color:#fff;">' + params[i].value + '&nbsp;</span><br/>';
      }
      htmlStr += '</div>';
      return  htmlStr
    },
  },
  xAxis: {
    type: 'category',
    axisLine: {
      lineStyle: {
        color: "#a6abab" // y座標軸的軸線顏色
      }
    },
    axisTick: {
      length: 0
    },
    axisLabel: {
      interval: 0,
      textStyle: {
        color: '#bdbdbd'
      }
    },
    // name: '(機臺號)',
    // nameTextStyle: {
    //   padding: [10, 0, 0, 0],
    //   color: '#bdbdbd'
    // },
    nameGap: 0,
    data: this.OEEX
  },
  yAxis: {
    type: 'value',
    axisLine: {
      lineStyle: {
        color: "#a6abab" // y座標軸的軸線顏色
      }
    },
    axisTick: {
      length: 0 // 刻度線的長度
    },
    splitLine: {//y軸的網格
      lineStyle: {
        color: ["#eee"],
        width: 1,
        type: 'solid'
      }
    },
    axisLabel: {
      textStyle: {
        color: '#a3a4b2'
      }
    }
  },
  series: [{
    name: '工藝1',
    type: 'line',
    smooth: true,
    symbol: 'circle', // 拐點類型
    symbolSize: 0, // 拐點圓的大小
    itemStyle: {
      normal: {
        color: '#6da4ef', // 折線條的顏色
        borderColor: '#6da4ef', // 拐點邊框顏色
        areaStyle: {
          type: 'default',
          opacity: 0.1
        }
      }
    },
    data:this.OEEY
  }]
};
this.chart4 = this.echarts.init(document.getElementById("chart4")); //定義
this.chart4.clear();
this.chart4.setOption(option4); //展現複製代碼
相關文章
相關標籤/搜索