echarts 折线配置项内容和展示

配置项如下
      // Generate data
var category = ['2019/10/01','2019/10/01','2019/10/02','2019/10/03','2019/10/04','2019/10/05','2019/10/06'];
var dottedBase = [];
var lineData = [24,30,18,19,29,23,29];
var barData = [10,15,13,15,29,28,27];
var lineData2 =  [29,38,39,33,39,37,49];
var rateData = [];    
var rateData2 = []; 
for (var i = 0; i < 33; i++) {
    var rate=barData[i]/lineData[i];
    var rate2 = barData[i]/lineData2[i];
    rateData[i] = rate.toFixed(2);
    rateData2[i] = rate2.toFixed(2);
}


// option
option = {
    backgroundColor: '#fff',
    tooltip: {
        trigger: 'axis',
        backgroundColor:'rgba(67,140,226,0.5)',
        axisPointer: {
            type: 'shadow',
            label: {
                show: true,
                backgroundColor: '#7B7DDC'
            }
        }
    },
    legend: {
        data: ['温度', '湿度','含水率',],
        textStyle: {
            color: '#666',
            fontSize:10
        },
        top:'7%',
    },
    grid:{
        x:'12%',
        width:'82%',
        y:'12%',
    },
    xAxis: {
        data: category,
        axisLine: {
            lineStyle: {
                color: '#666'
            }
        },
        axisLabel:{
          fontSize:20  
        },
        axisTick:{
            show:false,
        },
    },
    yAxis: [{

        splitLine: {show: false},
        axisLine: {
            lineStyle: {
                color: '#666',
            }
        },
        
        axisLabel:{
            formatter:'{value} ',
             fontSize:20 
        }
    },
        {

        splitLine: {show: false},
        axisLine: {
            lineStyle: {
                color: '#666',
            }
        },
        axisLabel:{
            formatter:'{value} ',
            fontSize:20 
        }
    }],
    
    series: [{
        name: '湿度',
        type: 'line',
        smooth: true,
        showAllSymbol: true,
        boundaryGap: false,
        symbol: 'emptyCircle',
        symbolSize: 10,
        yAxisIndex: 1,
        lineStyle:{width:3},
        itemStyle: {
                normal: {
                color:'#8F82FB'},
        },
         areaStyle: { //区域填充样式
            normal: {
                //线性渐变,前4个参数分别是x0,y0,x2,y2(范围0~1);相当于图形包围盒中的百分比。如果最后一个参数是‘true’,则该四个值是绝对像素位置。
                color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
                        offset: 0,
                        color: 'rgba(143,130,251,0.3)'
                    },
                    {
                        offset: 1,
                        color: 'rgba(143,130,251,0.3)'
                    }
                ], false),
                shadowColor: 'rgba(53,142,215, 0.9)', //阴影颜色
                shadowBlur: 20 //shadowBlur设图形阴影的模糊大小。配合shadowColor,shadowOffsetX/Y, 设置图形的阴影效果。
            }
        },
        data: rateData
    }, 
    {
        name: '含水率',
        type: 'line',
        smooth: true,
        showAllSymbol: true,
        lineStyle:{width:3},
        boundaryGap: false,
        symbol: 'emptyCircle',
        symbolSize: 10,
        yAxisIndex: 1,
        itemStyle: {
                normal: {
                color:'#438ce2'},
        },
         areaStyle: { //区域填充样式
            normal: {
                //线性渐变,前4个参数分别是x0,y0,x2,y2(范围0~1);相当于图形包围盒中的百分比。如果最后一个参数是‘true’,则该四个值是绝对像素位置。
                color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
                        offset: 0,
                        color: 'rgba(67,140,226,0.3)'
                    },
                    {
                        offset: 1,
                        color: 'rgba(67,140,226,0)'
                    }
                ], false),
                shadowColor: 'rgba(53,142,215, 0.9)', //阴影颜色
                shadowBlur: 20 //shadowBlur设图形阴影的模糊大小。配合shadowColor,shadowOffsetX/Y, 设置图形的阴影效果。
            }
        },
        data: rateData2
    },
    {
        name: '温度',
        type: 'bar',
        barWidth: 15,
        itemStyle: {
            normal: {
                barBorderRadius: 8,
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1,
                    [
                        {offset: 0, color: '#FEB23E'},
                        {offset: 1, color: '#FF9852'}
                    ]
                )
            }
        },
        data: barData
    }
   ]
};
    
截图如下