echarts 配置项内容和展示

配置项如下
      option = {
    "tooltip": {
        "trigger": "axis",
        "confine": true
    },
    "color": [
        "rgb(93,141,219)",
        "rgb(237,98,75)",
        "rgb(80,207,102)",
        "rgb(158,101,241)",
        "rgb(249,221,137)",
        "rgb(254,164,133)",
        "rgb(251,149,28)",
        "rgb(22,124,255)",
        "rgb(58,165,212)",
        "rgb(128,201,186)",
        "rgb(186,172,173)",
        "rgb(180,148,197)",
        "rgb(237,163,178)"
    ],
    "title": {
        "show": false
    },
    "legend": {
        "bottom": 0,
        "textStyle": {
            "color": "#e6e9ed"
        },
        "inactiveColor": "#5a626d",
        "data": [
            "全部机型"
        ],
        "itemGap": 5,
        "itemWidth": 16,
        "itemHeight": 12,
        "pageTextStyle": {
            "color": "#e6e9ed"
        },
        "pageIconSize": 14
    },
    "grid": {
        "left": "left",
        "right": 16,
        "top": "10%",
        "bottom": "30",
        "containLabel": true,
        "borderColor": ""
    },
    "xAxis": {
        "type": "category",
        "boundaryGap": false,
        "axisLabel": {
            "color": "#5a626d",
            "showMaxLabel": true
        },
        "axisLine": {
            "lineStyle": {
                "width": 1,
                "color": "#5a626d"
            }
        },
        "data": [
            "09-17",
            "09-18",
            "09-19",
            "09-20",
            "09-21",
            "09-22",
            "09-23",
            "09-24",
            "09-25",
            "09-26",
            "09-27",
            "09-28",
            "09-29",
            "09-30",
            "10-01",
            "10-02",
            "10-03",
            "10-04",
            "10-05",
            "10-06",
            "10-07",
            "10-08",
            "10-09",
            "10-10",
            "10-11",
            "10-12",
            "10-13",
            "10-14",
            "10-15",
            "10-16"
        ]
    },
    "yAxis": [{
        "type": "value",
        "axisTick": false,
        "scale": true,
        "name": "万台",
        "nameTextStyle": {
            "color": "#5a626d"
        },
        "splitLine": {
            "lineStyle": {
                "width": 1,
                "color": "#36393f"
            }
        },
        "axisLabel": {
            "color": "#5a626d"
        },
        "axisLine": {
            "show": false
        }
    }],
    "series": [{
        "name": "全部机型",
        "type": "line",
        "symbol": "circle",
        "data": [
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            152515,
            {
                "value": 168912,
                "symbolSize": 12,
                "itemStyle": {
                    // "borderWidth": 5,
                    "color": {
                        "colorStops": [{
                                "offset": 0,
                                "color": "rgb(93, 141, 219, 1)"
                            },
                            {
                                "offset": 1,
                                "color": "rgb(93, 141, 219, 0)"
                            }
                        ]
                    }
                }
            },
            172784,
            222,
            null
        ],
        "areaStyle": {
            "color": {
                "x": 0,
                "y": 0,
                "x2": 0,
                "y2": 1,
                "type": "linear",
                "global": false,
                "colorStops": [{
                        "offset": 0,
                        "color": "rgba(93,141,219,1)"
                    },
                    {
                        "offset": 1,
                        "color": "rgba(93,141,219,0)"
                    }
                ]
            },
            "shadowColor": "rgb(93,141,219,.5)",
            "shadowBlur": 10
        }
    }],
    "category": [
        "09-17",
        "09-18",
        "09-19",
        "09-20",
        "09-21",
        "09-22",
        "09-23",
        "09-24",
        "09-25",
        "09-26",
        "09-27",
        "09-28",
        "09-29",
        "09-30",
        "10-01",
        "10-02",
        "10-03",
        "10-04",
        "10-05",
        "10-06",
        "10-07",
        "10-08",
        "10-09",
        "10-10",
        "10-11",
        "10-12",
        "10-13",
        "10-14",
        "10-15",
        "10-16"
    ]
}
    
截图如下