柱状-近15月echarts 配置项内容和展示

配置项如下
      option = {
    backgroundColor: '#0f375f',
    grid: {
        top: "25%",
        bottom: "10%"
    },
    tooltip: {
        trigger: "axis",
        axisPointer: {
            type: "shadow",
            label: {
                show: true
            }
        }
    },
    // legend: {
    //     data: ["同比", "投资额"],
    //     top: "15%",
    //     textStyle: {
    //         color: "#ffffff"
    //     }
    // },
    xAxis: {
        data: [
            "8日",
            "9日",
            "10日",
            "11日",
            "12日",
            "13日",
            "14日",
            "15日",
            "16日",
            "17日",
            "18日",
            "19日",
            "20日",
            "21日",
            "22日",
        ],
        axisLine: {
            show: false //隐藏X轴轴线
        },
        axisTick: {
            show: false //隐藏X轴刻度
        },
        axisLabel: {
            show: true,
            textStyle: {
                color: "#ebf8ac" //X轴文字颜色
            }
        }
    },
    yAxis: [{
            type: "value",
            name: "单位:户",
            nameTextStyle: {
                color: "#ebf8ac"
            },
            splitLine: {
                show: false
            },
            splitLine: {
                show: false
            },
            axisTick: {
                show: false
            },
            axisLine: {
                show: false
            },
            axisLabel: {
                show: true,
                textStyle: {
                    color: "#ebf8ac"
                }
            }
        },
        // {
        //     type: "value",
        //     name: "同比",
        //     nameTextStyle: {
        //         color: "#ebf8ac"
        //     },
        //     position: "right",
        //     splitLine: {
        //         show: false
        //     },
        //     splitLine: {
        //         show: false
        //     },
        //     axisTick: {
        //         show: false
        //     },
        //     axisLine: {
        //         show: false
        //     },
        //     axisLabel: {
        //         show: true,
        //         formatter: "{value} %", //右侧Y轴文字显示
        //         textStyle: {
        //             color: "#ebf8ac"
        //         }
        //     }
        // },
        {
            type: "value",
            gridIndex: 0,
            min: 50,
            max: 100,
            splitNumber: 8,
            splitLine: {
                show: false
            },
            axisLine: {
                show: false
            },
            axisTick: {
                show: false
            },
            axisLabel: {
                show: false
            },
            splitArea: {
                show: true,
                areaStyle: {
                    color: ["rgba(250,250,250,0.0)", "rgba(250,250,250,0.05)"]
                }
            }
        }
    ],
    series: [
        // {
        //     name: "同比",
        //     type: "line",
        //     yAxisIndex: 1, //使用的 y 轴的 index,在单个图表实例中存在多个 y轴的时候有用
        //     smooth: true, //平滑曲线显示
        //     showAllSymbol: true, //显示所有图形。
        //     symbol: "circle", //标记的图形为实心圆
        //     symbolSize: 10, //标记的大小
        //     itemStyle: {
        //         //折线拐点标志的样式
        //         color: "#058cff"
        //     },
        //     lineStyle: {
        //         color: "#058cff"
        //     },
        //     areaStyle:{
        //         color: "rgba(5,140,255, 0.2)"
        //     },
        //     data: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
        // },
        {
            name: "投资额",
            type: "bar",
            barWidth: 15,
            itemStyle: {
                normal: {
                    color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
                            offset: 0,
                            color: "#6f3d9e"
                        },
                        {
                            offset: 1,
                            color: "#3637a3"
                        }
                    ])
                }
            },
            data: [90, 100, 85, 80, 110, 120, 86, 99, 110, 87, 95, 110,120,87,97]
        }
    ]
};
    
截图如下