散点图、折线图、Y轴数字加汉字echarts scatter配置项内容和展示

配置项如下
      var data = [
    [96.24, 122.35],
    [33.09, 122.11],
    [57.60, 122.61],
    [36.77, 122.26],
    [20.10, 122.72],
    [45.53, 122.37],
    [110.07, 122.13],
    [72.05, 122.88],
    [39.82, 122.15],
    [111.24, 111.35],
    [100.09, 142.11],
    [57.60, 142.61],
    [36.77, 142.26],
    [20.10, 142.72],
    [45.53, 142.37],
    [110.07, 142.13],
    [72.05, 142.88],
    [39.82, 142.15],
    [111.24, 172.35],
    [100.09, 172.11],
    [57.60, 172.61],
    [36.77, 172.26],
    [20.10, 172.72],
    [45.53, 172.37],
    [110.07, 172.13],
    [72.05, 172.88],
    [39.82, 172.15],
    [160.24, 250.35],
    [170.09, 260.11],
    [180.60, 280.61],
    [180.77, 282.26],
    [155.10, 285.72],
    [156.53, 272.37],
    [165.07, 283.13],
    [175.05, 281.88],
    [188.82, 255.15],
    
    
    [48.05, 70.50],
    [10.85, 2.57],
    [51.66, 63.70],
    [61.07, 127.13],
    [64.54, 33.59],
    [35.50, 25.01],
    [226.55, 664.02],
    [188.60, 200],
    [81.31, 410]
];
option = {
    xAxis: [{
        type: 'value',
        
        splitLine:{//去除网格线
			show:false
		},
    },{
        type : 'category',
        position: 'bottom',
        boundaryGap : true,

    }],
    yAxis: [{
        type: 'value',
    },{
        type: 'category',
        position: 'left',
        

    }],
    series: [{
        name: 'scatter',
        type: 'scatter',
        xAxisIndex: 0,
        yAxisIndex: 0,
        label: {
            emphasis: {
                show: true,
                position: 'right',
                textStyle: {
                    color: 'blue',
                    fontSize: 13
                }
            }
        },
        data: data
    },{
        name:'邮件营销',
        type:'line',
        symbol: 'none',
        smooth: true,
        xAxisIndex: 1,
        yAxisIndex: 0,
        stack: '总量',
        data:[122, 142, 172, 202, 242, 282, 342]
    }]
};

    
截图如下