let xAxisData = ["1", "2", "3", "4", "5", "6", "7", "8"];
let yAxisData1 = [333, 333, 150, 113, 120, 100, 110, 333];
let yAxisData2 = [233, 233, 233, 233, 233, 233, 233, 233];
option = {
"backgroundColor": "#fff",
"tooltip": {
"trigger": "axis"
},
"legend": {
"data": ["1",'2'],
"top": "10%"
},
"toolbox": {
"show": false,
"feature": {
"dataZoom": {}
}
},
"grid": {
"top": "30%",
"left": "0%",
"right": "0%",
"bottom": "9%"
},
"xAxis": {
"show": false,
"type": "category",
"boundaryGap": false,
"axisLabel": {
"color": "rgba(0,0,0,0.8)",
"fontSize": 30
},
"data": xAxisData
},
"yAxis": {
"show": false,
"type": "value",
"axisLabel": {
"formatter": "{value} °C",
"color": "rgba(0,0,0,0.8)",
"fontSize": 30
}