Python爬取城市天气数据,并作数据可视化

news2024/11/24 17:58:51

1.爬取广惠河深2022-2024年的天气数据 

import requests     # 发送请求要用的模块 需要额外安装的
import parsel
import csv

f = open('广-惠-河-深天气.csv', mode='a', encoding='utf-8', newline='')
csv_writer = csv.writer(f)
csv_writer.writerow(['日期', '最高温度', '最低温度', '天气', '风向', '城市'])
city_list = [72049, 59287,59293,59493]
for city in city_list:
    city_name = ''
    if city == 72049:
        city_name = '惠州'
    elif city == 59287:
        city_name = '广州'
    elif city == 59293:
        city_name = '河源'
    elif city == 59493:
        city_name = '深圳'
    for year in range(2022, 2024):
        for month in range(1, 13):
            url = f'https://tianqi.2345.com/Pc/GetHistory?areaInfo%5BareaId%5D={city}&areaInfo%5BareaType%5D=2&date%5Byear%5D={year}&date%5Bmonth%5D={month}'
            # 1. 发送请求
            response = requests.get(url=url)
            # 2. 获取数据
            html_data = response.json()['data']
            # 3. 解析数据
            select = parsel.Selector(html_data)
            trs = select.css('.history-table tr')   # 拿到31个tr
            for tr in trs[1:]:                      # 第一个表头不要
                tds = tr.css('td::text').getall()   # 针对每个tr进行提取 取出所有的td里面的内容
                tds.append(city_name)               # 把城市追加到列表里面
                print(tds)
                # 4. 保存数据
                csv_writer.writerow(tds)

爬取的数据如下图所示 

 

 2.读取csv文件

import pandas as pd
data = pd.read_csv('广-惠-河-深天气.csv')
data

3.去除多余字符

#去除多余字符
data[['最高温度','最低温度']] = data[['最高温度','最低温度']].apply(lambda x: x.str.replace('°','').replace('', '0'))
data.head()

4.分割星期和日期

#分割日期与星期
data[['日期','星期']] = data['日期'].str.split(' ',expand=True,n=1)
data

5.筛选出城市数据子集。其中包含了四个城市在不同天气下的天数统计结果。

# 按城市和天气分组,并计算每组的天数
grouped = data.groupby(['城市', '天气']).size().reset_index(name='天数')

# 将结果按城市分为4个DataFrame
gz_weather = grouped[grouped['城市'] == '广州']
hy_weather = grouped[grouped['城市'] == '河源']
hz_weather = grouped[grouped['城市'] == '惠州']
sz_weather = grouped[grouped['城市'] == '深圳']
gz_weather
hy_weather
hz_weather
sz_weather

 

 6.将原有的天气类型按照关键字划分

# 定义一个函数,将原有的天气类型按照关键字划分
def classify_weather(weather):
    if '多云' in weather:
        return '多云'
    elif '晴' in weather:
        return '晴'
    elif '阴' in weather:
        return '阴'
    elif '大雨' in weather:
        return '雨'
    elif '中雨' in weather:
        return '雨'
    elif '小雨' in weather:
        return '雨'
    elif '雷阵雨' in weather:
        return '雨'
    elif '雾' in weather:
        return '雾'
    else:
        return '其他'

# 将原有的天气类型按照关键字划分,并存进新的 DataFrame 中
new_data = data[['城市', '天气']].copy()
new_data['新天气'] = new_data['天气'].apply(classify_weather)
new_data

7.对城市的天气数据按照新天气列分组后,计算每一种天气的天数,然后将“天气”列名改为“天数”得到的数据框。

# 按照城市和新天气列进行分组,并计算每一种天气的天数
count_data = new_data.groupby(['城市', '新天气'])['天气'].count().reset_index()
# 根据条件筛选出符合要求的行
df1 = count_data.loc[count_data['城市'] == '广州']
df2 = count_data.loc[count_data['城市'] == '河源']
df3 = count_data.loc[count_data['城市'] == '惠州']
df4 = count_data.loc[count_data['城市'] == '深圳']
# 将“天气”列名改为“天数”
df5 = df1.rename(columns={'天气': '天数'})
df6 = df2.rename(columns={'天气': '天数'})
df7 = df3.rename(columns={'天气': '天数'})
df8 = df4.rename(columns={'天气': '天数'})
# 输出结果
df5.to_csv('df5.csv',index=False)

上面输出结果保存到csv文件中,如果要查看可以输出df5 查看数据

 

8.筛选出每个城市平均温度等于最高温度和最低温度平均值的数据

# 筛选出平均温度等于最高温度和最低温度平均值的数据
data1 = data[(data['平均温度'] == (data['最高温度'] + data['最低温度']) / 2)]

data_AB = data1[(data1['城市'] == '广州') | (data1['城市'] == '深圳') | (data1['城市'] == '河源') | (data1['城市'] == '惠州')]

#将日期转换为月份并赋值给新的列
data_AB['月份'] = pd.to_datetime(data_AB['日期']).dt.month

#按照城市和月份分组,计算每组的平均气温
grouped_AB = data_AB.groupby(['城市', '月份'])['平均温度'].mean().reset_index()

#按照城市和月份排序
grouped_AB = grouped_AB.sort_values(['城市', '月份'])

#打印结果
grouped_AB

9.绘制广州、河源、惠州和深圳每日平均温度的折线图

import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
# 筛选出广州和湛江的数据
gz_data = data[data['城市'] == '广州']
hy_data = data[data['城市'] == '河源']
hz_data = data[data['城市'] == '惠州']
sz_data = data[data['城市'] == '深圳']

# 提取日期和平均温度数据
x = gz_data['日期']
y1 = gz_data['平均温度']
y2 = hy_data['平均温度']
y3 = hz_data['平均温度']
y4 = sz_data['平均温度']

# 绘制折线图
plt.figure(dpi=500, figsize=(10, 5))
plt.title("广河惠深每日平均温度折线图")
plt.plot(x, y1, color='red', label='广州')
plt.plot(x, y2, color='blue', label='河源')
plt.plot(x,y3,color='green',label='惠州')
plt.plot(x,y4,color='yellow',label='深圳')
# 获取图的坐标信息
coordinates = plt.gca()
# 设置x轴每个刻度的间隔天数
xLocator = mpl.ticker.MultipleLocator(30)
coordinates.xaxis.set_major_locator(xLocator)
# 将日期旋转30°
plt.xticks(rotation=30)
plt.xticks(fontsize=8)
plt.ylabel("温度(℃)")
plt.xlabel("日期")
plt.legend()
plt.savefig("广河惠深每日平均温度折线图.png")
plt.show()

10.绘制城市为广州、惠州、深圳、河源的月平均气温数据

data_GZ_HZ_SZ_HY = grouped_AB[(grouped_AB['城市'] == '广州') | (grouped_AB['城市'] == '惠州') | (grouped_AB['城市'] == '深圳') | (grouped_AB['城市'] == '河源')]

#绘制折线图
fig, ax = plt.subplots()
for city in ['广州', '惠州', '深圳', '河源']:
    ax.plot(data_GZ_HZ_SZ_HY[data_GZ_HZ_SZ_HY['城市'] == city]['月份'], data_GZ_HZ_SZ_HY[data_GZ_HZ_SZ_HY['城市'] == city]['平均温度'], label=city)

#设置图例和标题
ax.legend()
ax.set_title('广州、惠州、深圳、河源每月气温折线图')

#显示图形
plt.show()

11.绘制四个城市数据对比


import matplotlib.pyplot as plt

#创建一个画布
fig, ax = plt.subplots(figsize=(10, 5))

#绘制广州各类天气条形图
ax.bar(df5['新天气'], df5['天数'], width=0.2, label='广州')

#绘制惠州各类天气条形图
ax.bar(df7['新天气'], df7['天数'], width=0.2, label='惠州', alpha=0.7)

#绘制河源各类天气条形图
ax.bar(df6['新天气'], df6['天数'], width=0.2, label='河源', alpha=0.7)

#绘制深圳各类天气条形图
ax.bar(df8['新天气'], df8['天数'], width=0.2, label='深圳', alpha=0.7)

#设置图例
ax.legend()

#设置 x 轴标签和标题
ax.set_xlabel('天气类型')
ax.set_ylabel('天数')
ax.set_title('广州、惠州、河源、深圳各类天气天数对比')

#显示图表
plt.show()

 

12.各个城市天气占比

import pandas as pd
from pyecharts.charts import Pie
from pyecharts import options as opts

# 读取csv文件并转换为列表格式
df = pd.read_csv('df5.csv')
data_list = df[['新天气', '天数']].values.tolist()

# 生成饼图
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="广州各类天气天数占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}"))
pie.render_notebook()

import pandas as pd
from pyecharts.charts import Pie
from pyecharts import options as opts

# 读取csv文件并转换为列表格式
df = pd.read_csv('df6.csv')
data_list = df[['新天气', '天数']].values.tolist()

# 生成饼图
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="河源各类天气天数占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}"))
pie.render_notebook()

import pandas as pd
from pyecharts.charts import Pie
from pyecharts import options as opts

# 读取csv文件并转换为列表格式
df = pd.read_csv('df7.csv')
data_list = df[['新天气', '天数']].values.tolist()

# 生成饼图
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="惠州各类天气天数占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}"))
pie.render_notebook()

import pandas as pd
from pyecharts.charts import Pie
from pyecharts import options as opts

# 读取csv文件并转换为列表格式
df = pd.read_csv('df8.csv')
data_list = df[['新天气', '天数']].values.tolist()

# 生成饼图
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="深圳各类天气天数占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}"))
pie.render_notebook()

13.统计四个城市每日气温折线图

import matplotlib.pyplot as plt
import matplotlib as mpl
import pandas as pd
# 筛选出广州和湛江的数据
gz_data = data[data['城市'] == '广州']
hy_data = data[data['城市'] == '河源']
hz_data = data[data['城市'] == '惠州']
sz_data = data[data['城市'] == '深圳']

# 提取日期和平均温度数据
x = gz_data['日期']
y1 = gz_data['平均温度']
y2 = hy_data['平均温度']
y3 = hz_data['平均温度']
y4 = sz_data['平均温度']

# 绘制面积图
plt.figure(dpi=500, figsize=(10, 5))
plt.title("广州惠州河源深圳折线图")
plt.fill_between(x, y1, color='red', alpha=0.5, label='广州')
plt.fill_between(x, y2, color='blue', alpha=0.5, label='河源')
plt.fill_between(x, y3, color='yellow', alpha=0.5, label='惠州')
plt.fill_between(x, y4, color='green', alpha=0.5, label='深圳')
# 获取图的坐标信息
coordinates = plt.gca()
# 设置x轴每个刻度的间隔天数
xLocator = mpl.ticker.MultipleLocator(30)
coordinates.xaxis.set_major_locator(xLocator)
# 将日期旋转30°
plt.xticks(rotation=30)
plt.xticks(fontsize=8)
plt.ylabel("温度(℃)")
plt.xlabel("日期")
plt.legend()
plt.savefig("广-惠-河-深折线图")
plt.show()

14.读取四个城市各类天气天数对比图

import matplotlib.pyplot as plt
from pyecharts.charts import Bar
# 读取广州数据并生成柱状图
df1 = pd.read_csv('df5.csv')
data_list1 = df1[['新天气', '天数']].values.tolist()

# 读取河源数据并生成柱状图
df2 = pd.read_csv('df6.csv')
data_list2 = df2[['新天气', '天数']].values.tolist()

# 读取惠州数据并生成柱状图
df3 = pd.read_csv('df7.csv')
data_list3 = df3[['新天气', '天数']].values.tolist()

# 读取深圳数据并生成柱状图
df4 = pd.read_csv('df8.csv')
data_list4 = df4[['新天气', '天数']].values.tolist()
# 合并 x 轴数据
x_data = list(set([i[0] for i in data_list1] + [i[0] for i in data_list2] + [i[0] for i in data_list3] + [i[0] for i in data_list4]))

# 生成柱状图
bar = Bar()
bar.add_xaxis(x_data)
bar.add_yaxis("广州", [df1.loc[df1['新天气']==x, '天数'].tolist()[0] if x in df1['新天气'].tolist() else 0 for x in x_data])
bar.add_yaxis("河源", [df2.loc[df2['新天气']==x, '天数'].tolist()[0] if x in df2['新天气'].tolist() else 0 for x in x_data])
bar.add_yaxis("惠州", [df3.loc[df3['新天气']==x, '天数'].tolist()[0] if x in df3['新天气'].tolist() else 0 for x in x_data])
bar.add_yaxis("深圳", [df4.loc[df4['新天气']==x, '天数'].tolist()[0] if x in df4['新天气'].tolist() else 0 for x in x_data])
bar.set_global_opts(title_opts=opts.TitleOpts(title="广州惠州河源深圳各类天气天数对比图"),
                     xaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(rotate=-45)),
                     legend_opts=opts.LegendOpts(pos_left="center"))
bar.render_notebook()

 15.读取四个城市当中一个城市的天气天数对比图

import matplotlib.pyplot as plt
from pyecharts.charts import Bar
# 读取惠州数据并生成柱状图
df3 = pd.read_csv('df7.csv')
data_list3 = df3[['新天气', '天数']].values.tolist()
# 生成柱状图
bar = Bar()
bar.add_xaxis(x_data)
bar.add_yaxis("惠州", [df3.loc[df3['新天气']==x, '天数'].tolist()[0] if x in df3['新天气'].tolist() else 0 for x in x_data])
bar.set_global_opts(title_opts=opts.TitleOpts(title="广州惠州河源深圳各类天气天数对比图"),
                     xaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(rotate=-45)),
                     legend_opts=opts.LegendOpts(pos_left="center"))
bar.render_notebook()

当今社会,数据越来越重要,因此,仪表盘成为了一种非常流行的数据可视化方式。通过使用仪表盘,用户可以更轻松地理解数据,从而做出更好的决策。在本文中,我们将介绍如何使用前端网页来实现仪表盘文字。

首先,我们需要一个基本的 HTML 文件。在这个文件中,我们将创建一个仪表盘的基本框架,并使用 CSS 来设置样式。在这个基本框架中,我们将包含一个 div 元素,用于显示仪表盘的文本。我们将使用 JavaScript 来动态地更新这个文本。

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Awesome-pyecharts</title>
  <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/echarts.min.js"></script>
  <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/jquery.min.js"></script>
  <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/jquery-ui.min.js"></script>
  <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/ResizeSensor.js"></script>

  <link rel="stylesheet"  href="https://assets.pyecharts.org/assets/v5/jquery-ui.css">

</head>
<body >
<style>.box {  } </style>
<button onclick="downloadCfg()">Save Config</button>
<div class="box">
  <div id="c48b9e2d9b7440e1b2f458d54f3b383c" class="chart-container" style="width:900px; height:500px; "></div>
  <script>
    var chart_c48b9e2d9b7440e1b2f458d54f3b383c = echarts.init(
            document.getElementById('c48b9e2d9b7440e1b2f458d54f3b383c'), 'white', {renderer: 'canvas'});
    var option_c48b9e2d9b7440e1b2f458d54f3b383c = {
      "animation": true,
      "animationThreshold": 2000,
      "animationDuration": 1000,
      "animationEasing": "cubicOut",
      "animationDelay": 0,
      "animationDurationUpdate": 300,
      "animationEasingUpdate": "cubicOut",
      "animationDelayUpdate": 0,
      "aria": {
        "enabled": false
      },
      "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
      ],
      "series": [
        {
          "type": "bar",
          "name": "广州",
          "legendHoverLink": true,
          "data": [
            247,
            0,
            1,
            14,
            61,
            42
          ],
          "realtimeSort": false,
          "showBackground": false,
          "stackStrategy": "samesign",
          "cursor": "pointer",
          "barMinHeight": 0,
          "barCategoryGap": "20%",
          "barGap": "30%",
          "large": false,
          "largeThreshold": 400,
          "seriesLayoutBy": "column",
          "datasetIndex": 0,
          "clip": true,
          "zlevel": 0,
          "z": 2,
          "label": {
            "show": true,
            "margin": 8
          }
        },
      {
          "type": "bar",
          "name": "河源",
          "legendHoverLink": true,
          "data": [
            249,
            0,
            6,
            19,
            62,
            29
          ],
          "realtimeSort": false,
          "showBackground": false,
          "stackStrategy": "samesign",
          "cursor": "pointer",
          "barMinHeight": 0,
          "barCategoryGap": "20%",
          "barGap": "30%",
          "large": false,
          "largeThreshold": 400,
          "seriesLayoutBy": "column",
          "datasetIndex": 0,
          "clip": true,
          "zlevel": 0,
          "z": 2,
          "label": {
            "show": true,
            "margin": 8
          }
        },
        { "type": "bar",
          "name": "惠州",
          "legendHoverLink": true,
          "data": [
            243,
            5,
            7,
            16,
            68,
            26,
          ],
          "realtimeSort": false,
          "showBackground": false,
          "stackStrategy": "samesign",
          "cursor": "pointer",
          "barMinHeight": 0,
          "barCategoryGap": "20%",
          "barGap": "30%",
          "large": false,
          "largeThreshold": 400,
          "seriesLayoutBy": "column",
          "datasetIndex": 0,
          "clip": true,
          "zlevel": 0,
          "z": 2,
          "label": {
            "show": true,
            "margin": 8
          }
        },
        {
          "type": "bar",
          "name": "深圳",
          "legendHoverLink": true,
          "data": [
            252,
            0,
            6,
            10,
            58,
            39
          ],
          "realtimeSort": false,
          "showBackground": false,
          "stackStrategy": "samesign",
          "cursor": "pointer",
          "barMinHeight": 0,
          "barCategoryGap": "20%",
          "barGap": "30%",
          "large": false,
          "largeThreshold": 400,
          "seriesLayoutBy": "column",
          "datasetIndex": 0,
          "clip": true,
          "zlevel": 0,
          "z": 2,
          "label": {
            "show": true,
            "margin": 8
          }
        }
      ],
        "legend": [
      {
        "data": [
          "广州",
          "河源",
          "惠州",
          "深圳"
        ],
        "selected": {},
        "show": true,
        "left": "center",
        "padding": 5,
        "itemGap": 10,
        "itemWidth": 25,
        "itemHeight": 14,
        "backgroundColor": "transparent",
        "borderColor": "#ccc",
        "borderWidth": 1,
        "borderRadius": 0,
        "pageButtonItemGap": 5,
        "pageButtonPosition": "end",
        "pageFormatter": "{current}/{total}",
        "pageIconColor": "#2f4554",
        "pageIconInactiveColor": "#aaa",
        "pageIconSize": 15,
        "animationDurationUpdate": 800,
        "selector": false,
        "selectorPosition": "auto",
        "selectorItemGap": 7,
        "selectorButtonGap": 10
      }
    ],
            "tooltip": {
      "show": true,
              "trigger": "item",
              "triggerOn": "mousemove|click",
              "axisPointer": {
        "type": "line"
      },
      "showContent": true,
              "alwaysShowContent": false,
              "showDelay": 0,
              "hideDelay": 100,
              "enterable": false,
              "confine": false,
              "appendToBody": false,
              "transitionDuration": 0.4,
              "textStyle": {
        "fontSize": 14
      },
      "borderWidth": 0,
              "padding": 5,
              "order": "seriesAsc"
    },
    "xAxis": [
      {
        "show": true,
        "scale": false,
        "nameLocation": "end",
        "nameGap": 15,
        "gridIndex": 0,
        "axisLabel": {
          "show": true,
          "rotate": -45,
          "margin": 8
        },
        "inverse": false,
        "offset": 0,
        "splitNumber": 5,
        "minInterval": 0,
        "splitLine": {
          "show": true,
          "lineStyle": {
            "show": true,
            "width": 1,
            "opacity": 1,
            "curveness": 0,
            "type": "solid"
          }
        },
        "data": [
          "多云",
          "雾",
          "其他",
          "阴",
         "雨",
         "晴"
        ]
      }
    ],
            "yAxis": [
      {
        "show": true,
        "scale": false,
        "nameLocation": "end",
        "nameGap": 15,
        "gridIndex": 0,
        "inverse": false,
        "offset": 0,
        "splitNumber": 5,
        "minInterval": 0,
        "splitLine": {
          "show": true,
          "lineStyle": {
            "show": true,
            "width": 1,
            "opacity": 1,
            "curveness": 0,
            "type": "solid"
          }
        }
      }
    ],
            "title": [
      {
        "show": true,
        "text": "广州河源惠州深圳各类天气天数对比图",
        "target": "blank",
        "subtarget": "blank",
        "padding": 5,
        "itemGap": 10,
        "textAlign": "auto",
        "textVerticalAlign": "auto",
        "triggerEvent": false
      }
    ]
    };
    chart_c48b9e2d9b7440e1b2f458d54f3b383c.setOption(option_c48b9e2d9b7440e1b2f458d54f3b383c);
  </script>
  <br/>                <div id="88ddd5d9c5594bf597661b16ae91e0e4" class="chart-container" style="width:900px; height:500px; "></div>
  <script>
    var chart_88ddd5d9c5594bf597661b16ae91e0e4 = echarts.init(
            document.getElementById('88ddd5d9c5594bf597661b16ae91e0e4'), 'white', {renderer: 'canvas'});
    var option_88ddd5d9c5594bf597661b16ae91e0e4 = {
      "animation": true,
      "animationThreshold": 2000,
      "animationDuration": 1000,
      "animationEasing": "cubicOut",
      "animationDelay": 0,
      "animationDurationUpdate": 300,
      "animationEasingUpdate": "cubicOut",
      "animationDelayUpdate": 0,
      "aria": {
        "enabled": false
      },
      "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
      ],
      "series": [
        {
          "type": "pie",
          "colorBy": "data",
          "legendHoverLink": true,
          "selectedMode": false,
          "selectedOffset": 10,
          "clockwise": true,
          "startAngle": 90,
          "minAngle": 0,
          "minShowLabelAngle": 0,
          "avoidLabelOverlap": true,
          "stillShowZeroSum": true,
          "percentPrecision": 2,
          "showEmptyCircle": true,
          "emptyCircleStyle": {
            "color": "lightgray",
            "borderColor": "#000",
            "borderWidth": 0,
            "borderType": "solid",
            "borderDashOffset": 0,
            "borderCap": "butt",
            "borderJoin": "bevel",
            "borderMiterLimit": 10,
            "opacity": 1
          },
          "data": [
            {
              "name": "其他",
              "value": 1
            },
            {
              "name": "多云",
              "value": 247
            },
            {
              "name":"晴",
              "value": 42
            },
            {
              "name": "阴",
              "value": 14
            },
            {
              "name": "雨",
              "value": 61
            }
          ],
          "radius": [
            "0%",
            "75%"
          ],
          "center": [
            "50%",
            "50%"
          ],
          "label": {
            "show": true,
            "margin": 8,
            "formatter": "{b}"
          },
          "labelLine": {
            "show": true,
            "showAbove": false,
            "length": 15,
            "length2": 15,
            "smooth": false,
            "minTurnAngle": 90,
            "maxSurfaceAngle": 90
          },
          "rippleEffect": {
            "show": true,
            "brushType": "stroke",
            "scale": 2.5,
            "period": 4
          }
        }
      ],
      "legend": [
        {
          "data": [
           "其他",
           "多云",
           "阴",
           "雨",
           "晴"
          ],
          "selected": {},
          "show": true,
          "padding": 5,
          "itemGap": 10,
          "itemWidth": 25,
          "itemHeight": 14,
          "backgroundColor": "transparent",
          "borderColor": "#ccc",
          "borderWidth": 1,
          "borderRadius": 0,
          "pageButtonItemGap": 5,
          "pageButtonPosition": "end",
          "pageFormatter": "{current}/{total}",
          "pageIconColor": "#2f4554",
          "pageIconInactiveColor": "#aaa",
          "pageIconSize": 15,
          "animationDurationUpdate": 800,
          "selector": false,
          "selectorPosition": "auto",
          "selectorItemGap": 7,
          "selectorButtonGap": 10
        }
      ],
      "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
          "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
          "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
      },
      "title": [
        {
          "show": true,
          "text": "广州各类天气天数占比",
          "target": "blank",
          "subtarget": "blank",
          "padding": 5,
          "itemGap": 10,
          "textAlign": "auto",
          "textVerticalAlign": "auto",
          "triggerEvent": false
        }
      ]
    };
    chart_88ddd5d9c5594bf597661b16ae91e0e4.setOption(option_88ddd5d9c5594bf597661b16ae91e0e4);
  </script>
  <br/>                <div id="8d11665b4f43436cbb0b2ed6ae6b27f9" class="chart-container" style="width:900px; height:500px; "></div>
  <script>
    var chart_8d11665b4f43436cbb0b2ed6ae6b27f9 = echarts.init(
            document.getElementById('8d11665b4f43436cbb0b2ed6ae6b27f9'), 'white', {renderer: 'canvas'});
    var option_8d11665b4f43436cbb0b2ed6ae6b27f9 = {
      "animation": true,
      "animationThreshold": 2000,
      "animationDuration": 1000,
      "animationEasing": "cubicOut",
      "animationDelay": 0,
      "animationDurationUpdate": 300,
      "animationEasingUpdate": "cubicOut",
      "animationDelayUpdate": 0,
      "aria": {
        "enabled": false
      },
      "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
      ],
      "series": [
        {
          "type": "pie",
          "colorBy": "data",
          "legendHoverLink": true,
          "selectedMode": false,
          "selectedOffset": 10,
          "clockwise": true,
          "startAngle": 90,
          "minAngle": 0,
          "minShowLabelAngle": 0,
          "avoidLabelOverlap": true,
          "stillShowZeroSum": true,
          "percentPrecision": 2,
          "showEmptyCircle": true,
          "emptyCircleStyle": {
            "color": "lightgray",
            "borderColor": "#000",
            "borderWidth": 0,
            "borderType": "solid",
            "borderDashOffset": 0,
            "borderCap": "butt",
            "borderJoin": "bevel",
            "borderMiterLimit": 10,
            "opacity": 1
          },
          "data": [
            {
              "name": "其他",
              "value": 6
            },
            {
              "name": "多云",
              "value": 249
            },
            {
              "name": "晴",
              "value": 29
            },
            {
              "name": "阴",
              "value": 19
            },
            {
              "name": "雨",
              "value": 62
            },
          ],
          "radius": [
            "0%",
            "75%"
          ],
          "center": [
            "50%",
            "50%"
          ],
          "label": {
            "show": true,
            "margin": 8,
            "formatter": "{b}"
          },
          "labelLine": {
            "show": true,
            "showAbove": false,
            "length": 15,
            "length2": 15,
            "smooth": false,
            "minTurnAngle": 90,
            "maxSurfaceAngle": 90
          },
          "rippleEffect": {
            "show": true,
            "brushType": "stroke",
            "scale": 2.5,
            "period": 4
          }
        }
      ],
      "legend": [
        {
          "data": [
            "其他",
            "多云",
            "晴",
            "阴",
            "雨"

          ],
          "selected": {},
          "show": true,
          "padding": 5,
          "itemGap": 10,
          "itemWidth": 25,
          "itemHeight": 14,
          "backgroundColor": "transparent",
          "borderColor": "#ccc",
          "borderWidth": 1,
          "borderRadius": 0,
          "pageButtonItemGap": 5,
          "pageButtonPosition": "end",
          "pageFormatter": "{current}/{total}",
          "pageIconColor": "#2f4554",
          "pageIconInactiveColor": "#aaa",
          "pageIconSize": 15,
          "animationDurationUpdate": 800,
          "selector": false,
          "selectorPosition": "auto",
          "selectorItemGap": 7,
          "selectorButtonGap": 10
        }
      ],
      "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
          "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
          "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
      },
      "title": [
        {
          "show": true,
          "text": "河源各类天气占比",
          "target": "blank",
          "subtarget": "blank",
          "padding": 5,
          "itemGap": 10,
          "textAlign": "auto",
          "textVerticalAlign": "auto",
          "triggerEvent": false
        }
      ]
    };
    chart_8d11665b4f43436cbb0b2ed6ae6b27f9.setOption(option_8d11665b4f43436cbb0b2ed6ae6b27f9);
  </script>
  <br/>                <div id="3c4a8e7c9e8f5aebd9f23d5d3e7c2a3c" class="chart-container" style="width:900px; height:500px; "></div>
  <script>
    var chart_3c4a8e7c9e8f5aebd9f23d5d3e7c2a3c= echarts.init(
            document.getElementById('3c4a8e7c9e8f5aebd9f23d5d3e7c2a3c'), 'white', {renderer: 'canvas'});
    var option_3c4a8e7c9e8f5aebd9f23d5d3e7c2a3c = {
      "animation": true,
      "animationThreshold": 2000,
      "animationDuration": 1000,
      "animationEasing": "cubicOut",
      "animationDelay": 0,
      "animationDurationUpdate": 300,
      "animationEasingUpdate": "cubicOut",
      "animationDelayUpdate": 0,
      "aria": {
        "enabled": false
      },
      "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
      ],
      "series": [
        {
          "type": "pie",
          "colorBy": "data",
          "legendHoverLink": true,
          "selectedMode": false,
          "selectedOffset": 10,
          "clockwise": true,
          "startAngle": 90,
          "minAngle": 0,
          "minShowLabelAngle": 0,
          "avoidLabelOverlap": true,
          "stillShowZeroSum": true,
          "percentPrecision": 2,
          "showEmptyCircle": true,
          "emptyCircleStyle": {
            "color": "lightgray",
            "borderColor": "#000",
            "borderWidth": 0,
            "borderType": "solid",
            "borderDashOffset": 0,
            "borderCap": "butt",
            "borderJoin": "bevel",
            "borderMiterLimit": 10,
            "opacity": 1
          },
          "data": [
            {
              "name": "其他",
              "value": 7
            },
            {
              "name": "多云",
              "value": 243
            },
            {
              "name":"晴",
              "value": 26
            },
            {
              "name": "阴",
              "value": 16
            },
            {
              "name": "雨",
              "value": 68
            },
            {
              "name":"雾",
              "value": 5
            }
          ],
          "radius": [
            "0%",
            "75%"
          ],
          "center": [
            "50%",
            "50%"
          ],
          "label": {
            "show": true,
            "margin": 8,
            "formatter": "{b}"
          },
          "labelLine": {
            "show": true,
            "showAbove": false,
            "length": 15,
            "length2": 15,
            "smooth": false,
            "minTurnAngle": 90,
            "maxSurfaceAngle": 90
          },
          "rippleEffect": {
            "show": true,
            "brushType": "stroke",
            "scale": 2.5,
            "period": 4
          }
        }
      ],
      "legend": [
        {
          "data": [
            "其他",
            "多云",
            "阴",
            "雨",
            "晴",
             "雾"
          ],
          "selected": {},
          "show": true,
          "padding": 5,
          "itemGap": 10,
          "itemWidth": 25,
          "itemHeight": 14,
          "backgroundColor": "transparent",
          "borderColor": "#ccc",
          "borderWidth": 1,
          "borderRadius": 0,
          "pageButtonItemGap": 5,
          "pageButtonPosition": "end",
          "pageFormatter": "{current}/{total}",
          "pageIconColor": "#2f4554",
          "pageIconInactiveColor": "#aaa",
          "pageIconSize": 15,
          "animationDurationUpdate": 800,
          "selector": false,
          "selectorPosition": "auto",
          "selectorItemGap": 7,
          "selectorButtonGap": 10
        }
      ],
      "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
          "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
          "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
      },
      "title": [
        {
          "show": true,
          "text": "惠州各类天气天数占比",
          "target": "blank",
          "subtarget": "blank",
          "padding": 5,
          "itemGap": 10,
          "textAlign": "auto",
          "textVerticalAlign": "auto",
          "triggerEvent": false
        }
      ]
    };
    chart_3c4a8e7c9e8f5aebd9f23d5d3e7c2a3c.setOption(option_3c4a8e7c9e8f5aebd9f23d5d3e7c2a3c);
  </script>
  <br/>                <div id="7e4f9b8a5c1225a9d9c8e7a8e8d7d6b2" class="chart-container" style="width:900px; height:500px; "></div>
  <script>
    var chart_7e4f9b8a5c1225a9d9c8e7a8e8d7d6b2= echarts.init(
            document.getElementById('7e4f9b8a5c1225a9d9c8e7a8e8d7d6b2'), 'white', {renderer: 'canvas'});
    var option_7e4f9b8a5c1225a9d9c8e7a8e8d7d6b2 = {
      "animation": true,
      "animationThreshold": 2000,
      "animationDuration": 1000,
      "animationEasing": "cubicOut",
      "animationDelay": 0,
      "animationDurationUpdate": 300,
      "animationEasingUpdate": "cubicOut",
      "animationDelayUpdate": 0,
      "aria": {
        "enabled": false
      },
      "color": [
      " #5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
      ],
      "series": [
        {
          "type": "pie",
          "colorBy": "data",
          "legendHoverLink": true,
          "selectedMode": false,
          "selectedOffset": 10,
          "clockwise": true,
          "startAngle": 90,
          "minAngle": 0,
          "minShowLabelAngle": 0,
          "avoidLabelOverlap": true,
          "stillShowZeroSum": true,
          "percentPrecision": 2,
          "showEmptyCircle": true,
          "emptyCircleStyle": {
            "color": "lightgray",
            "borderColor": "#",
            "borderWidth": 0,
            "borderType": "solid",
            "borderDashOffset": 0,
            "borderCap": "butt",
            "borderJoin": "bevel",
            "borderMiterLimit": 10,
            "opacity": 1
          },
          "data": [
            {
              "name": "其他",
              "value": 6
            },
            {
              "name": "多云",
              "value": 252
            },
            {
              "name":"晴",
              "value": 39
            },
            {
              "name": "阴",
              "value": 10
            },
            {
              "name": "雨",
              "value": 58
            },
          ],
          "radius": [
            "0%",
            "75%"
          ],
          "center": [
            "50%",
            "50%"
          ],
          "label": {
            "show": true,
            "margin": 8,
            "formatter": "{b}"
          },
          "labelLine": {
            "show": true,
            "showAbove": false,
            "length": 15,
            "length2": 15,
            "smooth": false,
            "minTurnAngle": 90,
            "maxSurfaceAngle": 90
          },
          "rippleEffect": {
            "show": true,
            "brushType": "stroke",
            "scale": 2.5,
            "period": 4
          }
        }
      ],
      "legend": [
        {
          "data": [
            "其他",
            "多云",
            "阴",
            "雨",
            "晴"
          ],
          "selected": {},
          "show": true,
          "padding": 5,
          "itemGap": 10,
          "itemWidth": 25,
          "itemHeight": 14,
          "backgroundColor": "transparent",
          "borderColor": "#ccc",
          "borderWidth": 1,
          "borderRadius": 0,
          "pageButtonItemGap": 5,
          "pageButtonPosition": "end",
          "pageFormatter": "{current}/{total}",
          "pageIconColor": "#2f4554",
          "pageIconInactiveColor": "#aaa",
          "pageIconSize": 15,
          "animationDurationUpdate": 800,
          "selector": false,
          "selectorPosition": "auto",
          "selectorItemGap": 7,
          "selectorButtonGap": 10
        }
      ],
      "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
          "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
          "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
      },
      "title": [
        {
          "show": true,
          "text": "深圳各类天气天数占比",
          "target": "blank",
          "subtarget": "blank",
          "padding": 5,
          "itemGap": 10,
          "textAlign": "auto",
          "textVerticalAlign": "auto",
          "triggerEvent": false
        }
      ]
    };
    chart_7e4f9b8a5c1225a9d9c8e7a8e8d7d6b2.setOption(option_7e4f9b8a5c1225a9d9c8e7a8e8d7d6b2);
  </script>
  <br/>                <div id="05381e07884b4ca4a31f555d2e24d39e" class="chart-container" style="width:980px; height:600px; "></div>
  <script>
    var chart_05381e07884b4ca4a31f555d2e24d39e = echarts.init(
            document.getElementById('05381e07884b4ca4a31f555d2e24d39e'), 'white', {renderer: 'canvas'});
    var option_05381e07884b4ca4a31f555d2e24d39e = {
      "baseOption": {
        "series": [
          {
            "type": "line",
            "name": "广州",
            "connectNulls": false,
            "xAxisIndex": 0,
            "symbolSize": 5,
            "showSymbol": true,
            "smooth": true,
            "clip": true,
            "step": false,
            "data": [
              [
                1,
                15.709677419354838
              ],
              [
                2,
                12.232142857142858
              ],
              [
                3,
                21.177419354838708
              ],
              [
                4,
                22.533333333333335
              ],
              [
                5,
                24.370967741935484
              ],
              [
                6,
                28.0
              ],
              [
                7,
                30.35483870967742
              ],
              [
                8,
                29.0
              ],
              [
                9,
                28.866666666666667
              ],
              [
                10,
                24.903225806451612
              ],
              [
                11,
                21.783333333333335
              ],
              [
                12,
                13.403225806451612
              ]
            ],
            "hoverAnimation": true,
            "label": {
              "show": false,
              "margin": 8
            },
            "logBase": 10,
            "seriesLayoutBy": "column",
            "lineStyle": {
              "normal": {
                "width": 4,
                "shadowColor": "blue",
                "shadowBlur": 10,
                "shadowOffsetY": 10,
                "shadowOffsetX": 10
              }
            },
            "areaStyle": {
              "opacity": 0
            },
            "zlevel": 0,
            "z": 0,
            "rippleEffect": {
              "show": true,
              "brushType": "stroke",
              "scale": 2.5,
              "period": 4
            }
          },
          {
            "type": "line",
            "name": "河源",
            "connectNulls": false,
            "xAxisIndex": 0,
            "symbolSize": 5,
            "showSymbol": true,
            "smooth": true,
            "clip": true,
            "step": false,
            "data": [
              [
                1,
                15.080645
              ],
              [
                2,
                11.607143
              ],
              [
                3,
                21.096774
              ],
              [
                4,
                22.300000
              ],
              [
                5,
                23.887097
              ],
              [
                6,
                27.550000
              ],
              [
                7,
                30.419355
              ],
              [
                8,
                29.677419
              ],
              [
                9,
                29.216667
              ],
              [
                10,
                24.983871
              ],
              [
                11,
                21.933333
              ],
              [
                12,
                12.096774
              ]
            ],
            "hoverAnimation": true,
            "label": {
              "show": false,
              "margin": 8
            },
            "logBase": 10,
            "seriesLayoutBy": "column",
            "lineStyle": {
              "normal": {
                "width": 4,
                "shadowColor": "green",
                "shadowBlur": 10,
                "shadowOffsetY": 10,
                "shadowOffsetX": 10
              }
            },
            "areaStyle": {
              "opacity": 0
            },
            "zlevel": 0,
            "z": 0,
            "rippleEffect": {
              "show": true,
              "brushType": "stroke",
              "scale": 2.5,
              "period": 4
          }
      },
    {
            "type": "line",
            "name": "惠州",
            "connectNulls": false,
            "xAxisIndex": 0,
            "symbolSize": 5,
            "showSymbol": true,
            "smooth": true,
            "clip": true,
            "step": false,
            "data": [
              [
                1,
                17.290323
              ],
              [
                2,
                14.035714
              ],
              [
                3,
                21.677419
              ],
              [
                4,
                22.750000
              ],
              [
                5,
                24.774194
              ],
              [
                6,
                28.050000
              ],
              [
                7,
                29.306452
              ],
              [
                8,
                28.177419
              ],
              [
                9,
                28.416667
              ],
              [
                10,
                24.870968
              ],
              [
                11,
                22.783333
              ],
              [
                12,
                14.967742
              ]
            ],
            "hoverAnimation": true,
            "label": {
              "show": false,
              "margin": 8
            },
            "logBase": 10,
            "seriesLayoutBy": "column",
            "lineStyle": {
              "normal": {
                "width": 4,
                "shadowColor": "yellow",
                "shadowBlur": 10,
                "shadowOffsetY": 10,
                "shadowOffsetX": 10
              }
            },
            "areaStyle": {
              "opacity": 0
            },
            "zlevel": 0,
            "z": 0,
            "rippleEffect": {
              "show": true,
              "brushType": "stroke",
              "scale": 2.5,
              "period": 4
            }
          },
          {
            "type": "line",
            "name": "深圳",
            "connectNulls": false,
            "xAxisIndex": 0,
            "symbolSize": 5,
            "showSymbol": true,
            "smooth": true,
            "clip": true,
            "step": false,
            "data": [
              [
                1,
                17.580645
              ],
              [
                2,
                14.232143
              ],
              [
                3,
                21.596774
              ],
              [
                4,
                23.466667
              ],
              [
                5,
                25.064516
              ],
              [
                6,
                28.166667
              ],
              [
                7,
                30.016129
              ],
              [
                8,
                29.145161
              ],
              [
                9,
                29.400000
              ],
              [
                10,
                25.725806
              ],
              [
                11,
                22.966667
              ],
              [
                12,
                14.870968
              ]
            ],
            "hoverAnimation": true,
            "label": {
              "show": false,
              "margin": 8
            },
            "logBase": 10,
            "seriesLayoutBy": "column",
            "lineStyle": {
              "normal": {
                "width": 4,
                "shadowColor": "red",
                "shadowBlur": 10,
                "shadowOffsetY": 10,
                "shadowOffsetX": 10
              }
            },
            "areaStyle": {
              "opacity": 0
            },
            "zlevel": 0,
            "z": 0,
            "rippleEffect": {
              "show": true,
              "brushType": "stroke",
              "scale": 2.5,
              "period": 4
            }
          }
        ],
        "timeline": {
          "axisType": "category",
          "currentIndex": 0,
          "orient": "horizontal",
          "autoPlay": true,
          "controlPosition": "left",
          "loop": true,
          "rewind": false,
          "show": true,
          "inverse": false,
          "playInterval": 1000,
          "left": "0",
          "right": "0",
          "bottom": "-5px",
          "progress": {},
          "data": [
            "1月",
            "2月",
            "3月",
            "4月",
            "5月",
            "6月",
            "7月",
            "8月",
            "9月",
            "10月",
            "11月",
            "12月"
          ]
        },
        "xAxis": [
          {
            "type": "category",
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "axisLine": {
              "show": true,
              "onZero": true,
              "onZeroAxisIndex": 0,
              "lineStyle": {
                "show": true,
                "width": 2,
                "opacity": 1,
                "curveness": 0,
                "type": "solid",
                "color": "#DB7093"
              }
            },
            "axisLabel": {
              "show": true,
              "color": "red",
              "margin": 8,
              "fontSize": 14
            },
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "boundaryGap": false,
            "minInterval": 0,
            "splitLine": {
              "show": true,
              "lineStyle": {
                "show": true,
                "width": 1,
                "opacity": 1,
                "curveness": 0,
                "type": "solid"
              }
            },
            "data": [
              1,
              2,
              3,
              4,
              5,
              6,
              7,
              8,
              9,
              10,
              11,
              12
            ]
          }
        ],
        "yAxis": [
          {
            "name": "平均温度",
            "show": true,
            "scale": true,
            "nameLocation": "end",
            "nameGap": 15,
            "nameTextStyle": {
              "color": "blue",
              "fontWeight": "bold",
              "fontSize": 16
            },
            "gridIndex": 0,
            "axisLine": {
              "show": true,
              "onZero": true,
              "onZeroAxisIndex": 0,
              "lineStyle": {
                "show": true,
                "width": 2,
                "opacity": 1,
                "curveness": 0,
                "type": "solid",
                "color": "blue"
              }
            },
            "axisLabel": {
              "show": true,
              "color": "yellow",
              "margin": 8,
              "fontSize": 13
            },
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "min": 3,
            "max": 25,
            "minInterval": 0,
            "splitLine": {
              "show": true,
              "lineStyle": {
                "show": true,
                "width": 1,
                "opacity": 1,
                "curveness": 0,
                "type": "dashed"
              }
            }
          }
        ],
        "legend": [
          {
            "data": [
              "广州",
              "河源",
              "惠州",
              "深圳",
            ],
            "selected": {},
            "show": true,
            "right": "1%",
            "top": "2%",
            "orient": "vertical",
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "icon": "roundRect",
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
          }
        ]
      },
      "options": [
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "blue",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "green",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "yellow",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "red",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "blue",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "blue"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "blue",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 5,
              "max": 27,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度变化趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "red",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "yellow",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                   2,
                   14.232143
                 ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "red",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 2,
              "max": 24,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#blue'}, {offset: 1, color: '#yellow'},{offset:2,color:'#red'},{offset:3,color:'#green'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                   3,
                   21.677419
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "yellow",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                   3,
                   21.596774
                 ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "red",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 11,
              "max": 31,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 12,
              "max": 32,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度变化趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                 ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                   5,
                   25.064516
                 ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 14,
              "max": 35,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ],
                [
                  6,
                  28.000000
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ],
                [
                   6,
                   27.550000
                 ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                 ],
                [
                  6,
                  28.050000
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                  5,
                  25.064516
                ],
                [
                   6,
                   28.166667
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 18,
              "max": 39,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ],
                [
                  6,
                  28.000000
                ],
                [
                  7,
                  30.354839
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ],
                [
                  6,
                  27.550000
                ],
                [
                  7,
                  30.419355
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                ],
                [
                  6,
                  28.050000
                ],
                [
                  7,
                  29.306452
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                  5,
                  25.064516
                ],
                [
                  6,
                  28.166667
                ],
                [
                  7,
                  30.016129
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 19,
              "max": 40,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ],
                [
                  6,
                  28.000000
                ],
                [
                  7,
                  30.354839
                ],
                [
                  8,
                  29.000000
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ],
                [
                  6,
                  27.550000
                ],
                [
                  7,
                  30.419355
                ],
                [
                  8,
                  29.677419
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [


                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                ],
                [
                  6,
                  28.050000
                ],
                [
                  7,
                  29.306452
                ],
                [
                  8,
                  28.177419
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                  5,
                  25.064516
                ],
                [
                  6,
                  28.166667
                ],
                [
                  7,
                  30.016129
                ],
                [
                  8,
                  29.145161
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 18,
              "max": 39,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ],
                [
                  6,
                  28.000000
                ],
                [
                  7,
                  30.354839
                ],
                [
                  8,
                  29.000000
                ],
                [
                  9,
                  28.866667
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ],
                [
                  6,
                  27.550000
                ],
                [
                  7,
                  30.419355
                ],
                [
                  8,
                  29.677419
                ],
                [
                   9,
                   29.216667
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                ],
                [
                  6,
                  28.050000
                ],
                [
                  7,
                  29.306452
                ],
                [
                   8,
                   28.177419
                ],
                [
                   9,
                   28.416667
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                  5,
                  25.064516
                ],
                [
                  6,
                  28.166667
                ],
                [
                  7,
                  30.016129
                ],
                [
                  8,
                  29.145161
                ],
                [
                   9,
                   29.400000
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 17,
              "max": 38,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ],
                [
                  6,
                  28.000000
                ],
                [
                  7,
                  30.354839
                ],
                [
                  8,
                  29.000000
                ],
                [
                  9,
                  28.866667
                ],
                [
                  10,
                  24.903226
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ],
                [
                  6,
                  27.550000
                ],
                [
                  7,
                  30.419355
                ],
                [
                  8,
                  29.677419
                ],
                [
                  9,
                  29.216667
                ],
                [
                   10,
                   24.983871
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                ],
                [
                  6,
                  28.050000
                ],
                [
                  7,
                  29.306452
                ],
              [
                  8,
                  28.177419
                ],
                [
                  9,
                  28.416667
                ],
                [
                  10,
                  24.870968
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                  5,
                  25.064516
                ],
                [
                  6,
                  28.166667
                ],
                [
                  7,
                  30.016129
                ],
                [
                  8,
                  29.145161
                ],
                [
                  9,
                  289.400000
                ],
                [
                  10,
                  25.725806
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 14,
              "max": 34,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ],
                [
                  6,
                  28.000000
                ],
                [
                  7,
                  30.354839
                ],
                [
                  8,
                  29.000000
                ],
                [
                  9,
                  28.866667
                ],
                [
                  10,
                  24.903226
                ],
                [
                  11,
                  21.783333
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ],
                [
                  6,
                  27.550000
                ],
                [
                  7,
                  30.419355
                ],
                [
                  8,
                  29.677419
                ],
                [
                  9,
                  29.216667
                ],
                [
                  10,
                  24.983871
                ],
                [
                  11,
                  21.933333
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                ],
                [
                  6,
                  28.050000
                ],
                [
                  7,
                  29.306452
                ],
              [
                  8,
                28.177419
                ],
                [
                  9,
                  28.416667
                ],
                [
                  10,
                  24.870968
                ],
                [
                  11,
                  22.783333
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [


                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                  5,
                  25.064516
                ],
                [
                  6,
                  28.166667
                ],
                [
                  7,
                  30.016129
                ],
                [
                  8,
                  29.145161
                ],
                [
                  9,
                  29.400000
                ],
                [
                  10,
                  25.725806
                ],
                [
                  11,
                  22.966667
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            }
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 11,
              "max": 33,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        },
        {
          "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
          "series": [
            {
              "type": "line",
              "name": "广州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.709677
                ],
                [
                  2,
                  12.232143
                ],
                [
                  3,
                  21.177419
                ],
                [
                  4,
                  22.533333
                ],
                [
                  5,
                  24.370968
                ],
                [
                  6,
                  28.000000
                ],
                [
                  7,
                  30.354839
                ],
                [
                  8,
                  29.000000
                ],
                [
                  9,
                  28.866667
                ],
                [
                  10,
                  24.903226
                ],
                [
                  11,
                  21.783333
                ],
                [
                  12,
                  13.403226
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "河源",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  15.080645
                ],
                [
                  2,
                  11.607143
                ],
                [
                  3,
                  21.096774
                ],
                [
                  4,
                  22.300000
                ],
                [
                  5,
                  23.887097
                ],
                [
                  6,
                  27.550000
                ],
                [
                  7,
                  30.419355
                ],
                [
                  8,
                  29.677419
                ],
                [
                  9,
                  29.216667
                ],
                [
                  10,
                  24.983871
                ],
                [
                  11,
                  21.933333
                ],
                [
                  12,
                  12.096774
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "惠州",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.290323
                ],
                [
                  2,
                  14.035714
                ],
                [
                  3,
                  21.677419
                ],
                [
                  4,
                  22.750000
                ],
                [
                  5,
                  24.774194
                ],
                [
                  6,
                  28.050000
                ],
                [
                  7,
                  29.306452
                ],
              [
                  8,
                28.177419
                ],
                [
                  9,
                  28.416667
                ],
                [
                  10,
                  24.870968
                ],
                [
                  11,
                  22.783333
                ],
                [
                  12,
                  14.967742
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
            {
              "type": "line",
              "name": "深圳",
              "connectNulls": false,
              "xAxisIndex": 0,
              "symbolSize": 5,
              "showSymbol": true,
              "smooth": true,
              "clip": true,
              "step": false,
              "data": [
                [
                  1,
                  17.580645
                ],
                [
                  2,
                  14.232143
                ],
                [
                  3,
                  21.596774
                ],
                [
                  4,
                  23.466667
                ],
                [
                  5,
                  25.064516
                ],
                [
                  6,
                  28.166667
                ],
                [
                  7,
                  30.016129
                ],
                [
                  8,
                  29.145161
                ],
                [
                  9,
                  29.400000
                ],
                [
                  10,
                  25.725806
                ],
                [
                  11,
                  22.966667
                ],
                [
                  12,
                  14.870968
                ]
              ],
              "hoverAnimation": true,
              "label": {
                "show": false,
                "margin": 8
              },
              "logBase": 10,
              "seriesLayoutBy": "column",
              "lineStyle": {
                "normal": {
                  "width": 4,
                  "shadowColor": "#696969",
                  "shadowBlur": 10,
                  "shadowOffsetY": 10,
                  "shadowOffsetX": 10
                }
              },
              "areaStyle": {
                "opacity": 0
              },
              "zlevel": 0,
              "z": 0,
              "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
              }
            },
          ],
          "xAxis": [
            {
              "type": "category",
              "show": true,
              "scale": false,
              "nameLocation": "end",
              "nameGap": 15,
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#DB7093"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "red",
                "margin": 8,
                "fontSize": 14
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "boundaryGap": false,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid"
                }
              },
              "data": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
              ]
            }
          ],
          "yAxis": [
            {
              "name": "平均温度",
              "show": true,
              "scale": true,
              "nameLocation": "end",
              "nameGap": 15,
              "nameTextStyle": {
                "color": "#5470c6",
                "fontWeight": "bold",
                "fontSize": 16
              },
              "gridIndex": 0,
              "axisLine": {
                "show": true,
                "onZero": true,
                "onZeroAxisIndex": 0,
                "lineStyle": {
                  "show": true,
                  "width": 2,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "solid",
                  "color": "#5470c6"
                }
              },
              "axisLabel": {
                "show": true,
                "color": "#5470c6",
                "margin": 8,
                "fontSize": 13
              },
              "inverse": false,
              "offset": 0,
              "splitNumber": 5,
              "min": 3,
              "max": 25,
              "minInterval": 0,
              "splitLine": {
                "show": true,
                "lineStyle": {
                  "show": true,
                  "width": 1,
                  "opacity": 1,
                  "curveness": 0,
                  "type": "dashed"
                }
              }
            }
          ],
          "title": [
            {
              "show": true,
              "text": "广州河源惠州深圳2022年每月平均温度发生变化的趋势",
              "target": "blank",
              "subtarget": "blank",
              "left": "center",
              "top": "2%",
              "padding": 5,
              "itemGap": 10,
              "textAlign": "auto",
              "textVerticalAlign": "auto",
              "triggerEvent": false,
              "textStyle": {
                "color": "#DC143C",
                "fontSize": 20
              }
            }
          ],
          "tooltip": {
            "show": true,
            "trigger": "axis",
            "triggerOn": "mousemove|click",
            "axisPointer": {
              "type": "cross"
            },
            "showContent": true,
            "alwaysShowContent": false,
            "showDelay": 0,
            "hideDelay": 100,
            "enterable": false,
            "confine": false,
            "appendToBody": false,
            "transitionDuration": 0.4,
            "textStyle": {
              "color": "#000"
            },
            "backgroundColor": "rgba(245, 245, 245, 0.8)",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "padding": 5,
            "order": "seriesAsc"
          },
          "color": [
            "#5470c6",
            "#91cc75",
            "#fac858",
            "#ee6666",
            "#73c0de",
            "#3ba272",
            "#fc8452",
            "#9a60b4",
            "#ea7ccc"
          ]
        }
      ]
    };
    chart_05381e07884b4ca4a31f555d2e24d39e.setOption(option_05381e07884b4ca4a31f555d2e24d39e);
  </script>
  <br/>                <div id="8a7398d8a2e046d998a8c6eabebb483a" class="chart-container" style="width:900px; height:500px; "></div>
  <script>
    var chart_8a7398d8a2e046d998a8c6eabebb483a = echarts.init(
            document.getElementById('8a7398d8a2e046d998a8c6eabebb483a'), 'white', {renderer: 'canvas'});
    var option_8a7398d8a2e046d998a8c6eabebb483a = {
      "animation": true,
      "animationThreshold": 2000,
      "animationDuration": 1000,
      "animationEasing": "cubicOut",
      "animationDelay": 0,
      "animationDurationUpdate": 300,
      "animationEasingUpdate": "cubicOut",
      "animationDelayUpdate": 0,
      "aria": {
        "enabled": false
      },
      "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
      ],
      "series": [
        {
          "type": "bar",
          "name": "平均温度",
          "legendHoverLink": true,
          "data": [
            120,
            110,
            134,
            120
          ],
          "realtimeSort": false,
          "showBackground": false,
          "stackStrategy": "samesign",
          "cursor": "pointer",
          "barMinHeight": 0,
          "barCategoryGap": "20%",
          "barGap": "30%",
          "large": false,
          "largeThreshold": 400,
          "seriesLayoutBy": "column",
          "datasetIndex": 0,
          "clip": true,
          "zlevel": 0,
          "z": 2,
          "label": {
            "show": true,
            "position": "top",
            "margin": 8
          },
          "rippleEffect": {
            "show": true,
            "brushType": "stroke",
            "scale": 2.5,
            "period": 4
          }
        }
      ],
      "legend": [
        {
          "data": [
            "天数"
          ],
          "selected": {},
          "show": true,
          "padding": 5,
          "itemGap": 10,
          "itemWidth": 25,
          "itemHeight": 14,
          "backgroundColor": "transparent",
          "borderColor": "#ccc",
          "borderWidth": 1,
          "borderRadius": 0,
          "pageButtonItemGap": 5,
          "pageButtonPosition": "end",
          "pageFormatter": "{current}/{total}",
          "pageIconColor": "#2f4554",
          "pageIconInactiveColor": "#aaa",
          "pageIconSize": 15,
          "animationDurationUpdate": 800,
          "selector": false,
          "selectorPosition": "auto",
          "selectorItemGap": 7,
          "selectorButtonGap": 10
        }
      ],
      "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
          "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
          "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
      },
      "xAxis": [
        {
          "show": true,
          "scale": false,
          "nameLocation": "end",
          "nameGap": 15,
          "gridIndex": 0,
          "inverse": false,
          "offset": 0,
          "splitNumber": 5,
          "minInterval": 0,
          "splitLine": {
            "show": true,
            "lineStyle": {
              "show": true,
              "width": 1,
              "opacity": 1,
              "curveness": 0,
              "type": "solid"
            }
          },
          "data": [
            "广州",
            "河源",
            "惠州",
            "深圳"
          ]
        }
      ],
      "yAxis": [
        {
          "show": true,
          "scale": false,
          "nameLocation": "end",
          "nameGap": 15,
          "gridIndex": 0,
          "inverse": false,
          "offset": 0,
          "splitNumber": 5,
          "minInterval": 0,
          "splitLine": {
            "show": true,
            "lineStyle": {
              "show": true,
              "width": 1,
              "opacity": 1,
              "curveness": 0,
              "type": "solid"
            }
          }
        }
      ],
      "title": [
        {
          "show": true,
          "text": "广州河源惠州深圳2022年平均气温为18-25℃的天数",
          "target": "blank",
          "subtarget": "blank",
          "padding": 5,
          "itemGap": 10,
          "textAlign": "auto",
          "textVerticalAlign": "auto",
          "triggerEvent": false
        }
      ]
    };
    chart_8a7398d8a2e046d998a8c6eabebb483a.setOption(option_8a7398d8a2e046d998a8c6eabebb483a);
  </script>
  <br/>    </div>
<script>
  $('#c48b9e2d9b7440e1b2f458d54f3b383c').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#c48b9e2d9b7440e1b2f458d54f3b383c>div:nth-child(1)").width("100%").height("100%");
  new ResizeSensor(jQuery('#c48b9e2d9b7440e1b2f458d54f3b383c'), function() { chart_c48b9e2d9b7440e1b2f458d54f3b383c.resize()});
  $('#88ddd5d9c5594bf597661b16ae91e0e4').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#88ddd5d9c5594bf597661b16ae91e0e4>div:nth-child(1)").width("100%").height("100%");
  new ResizeSensor(jQuery('#88ddd5d9c5594bf597661b16ae91e0e4'), function() { chart_88ddd5d9c5594bf597661b16ae91e0e4.resize()});
  $('#8d11665b4f43436cbb0b2ed6ae6b27f9').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#8d11665b4f43436cbb0b2ed6ae6b27f9>div:nth-child(1)").width("100%").height("100%");
  new ResizeSensor(jQuery('#8d11665b4f43436cbb0b2ed6ae6b27f9'), function() { chart_8d11665b4f43436cbb0b2ed6ae6b27f9.resize()});
  $('#05381e07884b4ca4a31f555d2e24d39e').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#05381e07884b4ca4a31f555d2e24d39e>div:nth-child(1)").width("100%").height("100%");
  new ResizeSensor(jQuery('#05381e07884b4ca4a31f555d2e24d39e'), function() { chart_05381e07884b4ca4a31f555d2e24d39e.resize()});
  $('#8a7398d8a2e046d998a8c6eabebb483a').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#8a7398d8a2e046d998a8c6eabebb483a>div:nth-child(1)").width("100%").height("100%");
  new ResizeSensor(jQuery('#8a7398d8a2e046d998a8c6eabebb483a'), function() { chart_8a7398d8a2e046d998a8c6eabebb483a.resize()});
  var charts_id = ['c48b9e2d9b7440e1b2f458d54f3b383c','88ddd5d9c5594bf597661b16ae91e0e4','8d11665b4f43436cbb0b2ed6ae6b27f9','05381e07884b4ca4a31f555d2e24d39e','8a7398d8a2e046d998a8c6eabebb483a'];
  function downloadCfg () {
    const fileName = 'chart_config.json'
    let downLink = document.createElement('a')
    downLink.download = fileName

    let result = []
    for(let i=0; i<charts_id.length; i++) {
      chart = $('#'+charts_id[i])
      result.push({
        cid: charts_id[i],
        width: chart.css("width"),
        height: chart.css("height"),
        top: chart.offset().top + "px",
        left: chart.offset().left + "px"
      })
    }

    let blob = new Blob([JSON.stringify(result)])
    downLink.href = URL.createObjectURL(blob)
    document.body.appendChild(downLink)
    downLink.click()
    document.body.removeChild(downLink)
  }
</script>
</body>
</html>

博主写代码来之不易

关注博主下篇更精彩

一键三连!!!

一键三连!!!
感谢一键三连!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/648436.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

EEPROM 磨损管理算法

这里写目录标题 前言需求结构局限性代码示例 前言 …最近工作上有用到EEPROM&#xff0c;在我的应用中需要一分钟一次的擦写频率&#xff0c;按照设备一天工作16h&#xff0c;十年的设备设计寿命来计算&#xff0c;大概要擦写300万次。超出了一般的EEPROM擦写循环次数100万。 …

【前端 - CSS】第 17 课 - CSS 特性

欢迎来到博主 Apeiron 的博客&#xff0c;祝您旅程愉快 &#xff01; 时止则止&#xff0c;时行则行。动静不失其时&#xff0c;其道光明。 目录 1、缘起 2、CSS 三大特性 2.1、继承性 2.2、层叠性 2.3、优先级 3、总结 1、缘起 CSS 是一种用于样式化网页的语言&#xf…

无代码开发smardaten与Power Platform详细对比

文章目录 前言&#xff1a;亟待转型的软开创业者什么是低/无代码居高不下的企业级软件搭建成本1. 开发周期较长2. 在需求明确、软件修改、系统集成等方面存在多种卡点3. 数据管理混乱 无代码/低代码开发&#xff0c;时代的潮流无代码平台 smardaten1. smardaten 简介2. smardat…

一起看 I/O | 将 Kotlin 引入 Web

作者 / 产品经理 Vivek Sekhar 我们将在本文为您介绍 JetBrains 和 Google 的早期实验性工作。您可以观看今年 Google I/O 大会中的 WebAssembly 相关演讲&#xff0c;了解更多详情: https://youtu.be/RcHER-3gFXI?t604 应用开发者想要尽可能地在更多平台上最大限度地吸引用户…

高阶智驾进入「普及」周期,这四家车企包揽年度方案创新奖

特斯拉、理想等新能源汽车头部企业推动的NOA高阶智能驾驶上车潮&#xff0c;正在席卷整个汽车行业。包括吉利、广汽、长安、红旗等头部自主品牌也在加速推进&#xff0c;同时&#xff0c;在NOA、电子电气架构、数据闭环平台等方面&#xff0c;实现科技平权。 6月8-9日&#xff…

三菱FX3U中级课程-模拟量与PID

可别小看FX3U&#xff0c;它的功能比西门子200smart要强大&#xff0c;对于使用三菱PLC的设备&#xff0c;很多小型设备都可以用FX3U来做。 ​​ 三菱FX3U模拟量与PID 课程章节 第一节课 必须知道的模拟量理论知识 - 大白话讲解00:50:33 第二节课 通过测量空压机的压力才学习…

不确定 A Survey of Uncertainty in Deep Neural Networks(乱记)

随着深度学习技术的不断发展&#xff0c;DNN模型的预测能力变得越来越强&#xff0c;然而在一些情况下这却并不是我们想要的&#xff0c;比如说给模型一个与训练集完全不相关的测试样本&#xff0c;我们希望模型能够承认自己的“无知”&#xff0c;而不是强行给出一个预测结果&…

【深度学习】1 感知机(人工神经元)

认识感知机 感知机接收多个输入信号&#xff0c;输出一个信号 感知机的信号只有“流/不流”(1/0)两种取值 0对应“不传递信号”&#xff0c;1对应“传递信号”。 输入信号被送往神经元时&#xff0c;会被分别乘以固定的权重。神经元会计算传送过来的信号的综合&#xff0c;只有…

云平台 stm32连接oneNET保姆级别教学只看这一篇就够了~

1 注册账号 oneNET点击直达 如图点击右上角开发者中心 点击多协议接入 点击添加产品 如下图设置参数 点击立即添加设备 点击添加设备 如下图设置参数 点击右边的详情查看设备ID和鉴权信息 点击产品概况获取 产品ID 平台注册告一段落 你现在拥有了一个oneNET账号 设备ID …

easycode-自定义的模板-类型对应问题

一、遇到的问题 1、mysql数据库中有些字段没有生成到 在图形工具中修改了表结构 &#xff0c;增加了字段&#xff0c;这个时候要在idea中刷新下数据库 2、数据库中有tinyint 类型的字段&#xff0c;生成代码后mapper.xml中jdbcType总是BYTE&#xff0c;但是mybatis中并没有BYT…

echarts分割柱形图实现渐变电量效果柱状图

先看下效果图是这个样子的 &#xff0c;和普通的柱状图最明显的区别就是需要做成类似于电池格电量显示效果。 目录 1、官网找例子 2、改造示例 3、全部代码 4、初始效果和完成效果对比 1、官网找例子 首先到Echarts官网找到基础的柱状图 官网初始option 我们将option复制到…

一文教你彻底学会IIC协议

一文教你如何看懂I2C协议 一.序言二.IIC读写过程2.1主机向从机写入数据2.2主机向从机读取数据2.3 I2C起始信号和停止信号 三. 数据的有效性四.时序要求4.1 起始信号4.2 终止信号4.3 应答信号4.4 非应答信号读取数据五.代码实例 结语 一.序言 背景知识&#xff1a;I2C总线上是通…

顶奢好文:3W字,穿透Spring事务原理、源码,至少读10遍

说在前面 在40岁老架构师 尼恩的读者社区(50)中&#xff0c;最近有小伙伴拿到了一线互联网企业如阿里、美团、极兔、有赞、希音的面试资格&#xff0c;Spring事务源码的面试题&#xff0c;经常遇到&#xff1a; (1) spring什么情况下进行事务回滚&#xff1f; (2) spring 事务…

微服务springcloud 04. 远程调用,负载平衡,重试,ribbon框架

01.springcloud中关于远程调用&#xff0c;负载平衡。 02.远程调用 ribbon 提供了负载均衡和重试功能, 它底层是使用 RestTemplate 进行 Rest api 调用RestTemplate&#xff0c;RestTemplate 是SpringBoot提供的一个Rest远程调用工具。 它的常用方法: getForObject() - 执行…

「深度学习之优化算法」(六)遗传算法

1. 遗传算法简介 遗传算法(Genetic Algorithms&#xff0c;GA)是一种模拟自然中生物的遗传、进化以适应环境的智能算法。由于其算法流程简单&#xff0c;参数较少优化速度较快&#xff0c;效果较好&#xff0c;在图像处理、函数优化、信号处理、模式识别等领域有着广泛的应用。…

电气火灾探测器在智慧城市消防安全的应用 安科瑞 许敏

【摘要】智慧消防应用是重要的建设内容之一。根据固定资产投资额和消防经费测算&#xff0c;2017年消防市场容量合计约2761.65亿元&#xff0c;2020年消防市场规模可达5200亿元。通过梳理各地政府招标项目&#xff0c;预计全国政府智慧消防项目的投入总额可达92.8亿元。 【关键…

基于Java校园美食交流系统设计实现(源码+lw+部署文档+讲解等)

博主介绍&#xff1a; ✌全网粉丝30W,csdn特邀作者、博客专家、CSDN新星计划导师、java领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战 ✌ &#x1f345; 文末获取源码联系 &#x1f345; &#x1f447;&#x1f3fb; 精…

crontab执行时间与系统时间不一致

crontab执行时间与系统时间不一致 一&#xff1a;问题查找&#xff1a; 问题描述&#xff1a;今天新发现一个问题&#xff0c;定时任务写了之后一直不执行&#xff0c;查看日志才发现&#xff0c;执行的时间给我定时的时间相差了12个小时。 1、查看定时任务的相关日志&#…

Nik Color Efex 滤镜详解(1/5)

双色滤镜 Bi-Color Filter 混合两种颜色然后将混合结果添加到图像&#xff0c;以此模拟传统的双色玻璃滤镜效果。 颜色组合 Color Set 提供棕色、冷/暖、绿色/棕色、青苔色、紫色/粉红色等多种颜色组合&#xff0c;每个颜色组合又有 4 种版本可供选择。 不透明度 Opacity 调整…

Stuart Russell对话姚期智:为全人类设计AI系统,可以借鉴墨子「兼爱」思想丨2023智源大会AI安全与对齐论坛...

导读 在2023智源大会「AI安全与对齐论坛」的对话环节&#xff0c;加州大学伯克利分校教授Stuart Russell与图灵奖得主、中国科学院院士姚期智针对「如何设计对人类有益的AI」、「如何管控AI技术」&#xff0c;以及「LLM内在目标与意识」等话题进行了深度探讨&#xff0c;其中St…