国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

這篇具有很好參考價值的文章主要介紹了Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點(diǎn)擊"舉報違法"按鈕提交疑問。

1.爬取廣惠河深2022-2024年的天氣數(shù)據(jù)?

import requests     # 發(fā)送請求要用的模塊 需要額外安裝的
import parsel
import csv

f = open('廣-惠-河-深天氣.csv', mode='a', encoding='utf-8', newline='')
csv_writer = csv.writer(f)
csv_writer.writerow(['日期', '最高溫度', '最低溫度', '天氣', '風(fēng)向', '城市'])
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. 發(fā)送請求
            response = requests.get(url=url)
            # 2. 獲取數(shù)據(jù)
            html_data = response.json()['data']
            # 3. 解析數(shù)據(jù)
            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進(jìn)行提取 取出所有的td里面的內(nèi)容
                tds.append(city_name)               # 把城市追加到列表里面
                print(tds)
                # 4. 保存數(shù)據(jù)
                csv_writer.writerow(tds)

爬取的數(shù)據(jù)如下圖所示?

?Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

?2.讀取csv文件

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

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

3.去除多余字符

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

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

4.分割星期和日期

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

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

5.篩選出城市數(shù)據(jù)子集。其中包含了四個城市在不同天氣下的天數(shù)統(tǒng)計結(jié)果。

# 按城市和天氣分組,并計算每組的天數(shù)
grouped = data.groupby(['城市', '天氣']).size().reset_index(name='天數(shù)')

# 將結(jié)果按城市分為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

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化?

?6.將原有的天氣類型按照關(guān)鍵字劃分

# 定義一個函數(shù),將原有的天氣類型按照關(guān)鍵字劃分
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 '其他'

# 將原有的天氣類型按照關(guān)鍵字劃分,并存進(jìn)新的 DataFrame 中
new_data = data[['城市', '天氣']].copy()
new_data['新天氣'] = new_data['天氣'].apply(classify_weather)
new_data

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

7.對城市的天氣數(shù)據(jù)按照新天氣列分組后,計算每一種天氣的天數(shù),然后將“天氣”列名改為“天數(shù)”得到的數(shù)據(jù)框。

# 按照城市和新天氣列進(jìn)行分組,并計算每一種天氣的天數(shù)
count_data = new_data.groupby(['城市', '新天氣'])['天氣'].count().reset_index()
# 根據(jù)條件篩選出符合要求的行
df1 = count_data.loc[count_data['城市'] == '廣州']
df2 = count_data.loc[count_data['城市'] == '河源']
df3 = count_data.loc[count_data['城市'] == '惠州']
df4 = count_data.loc[count_data['城市'] == '深圳']
# 將“天氣”列名改為“天數(shù)”
df5 = df1.rename(columns={'天氣': '天數(shù)'})
df6 = df2.rename(columns={'天氣': '天數(shù)'})
df7 = df3.rename(columns={'天氣': '天數(shù)'})
df8 = df4.rename(columns={'天氣': '天數(shù)'})
# 輸出結(jié)果
df5.to_csv('df5.csv',index=False)

上面輸出結(jié)果保存到csv文件中,如果要查看可以輸出df5 查看數(shù)據(jù)

?Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

8.篩選出每個城市平均溫度等于最高溫度和最低溫度平均值的數(shù)據(jù)

# 篩選出平均溫度等于最高溫度和最低溫度平均值的數(shù)據(jù)
data1 = data[(data['平均溫度'] == (data['最高溫度'] + data['最低溫度']) / 2)]

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

#將日期轉(zhuǎn)換為月份并賦值給新的列
data_AB['月份'] = pd.to_datetime(data_AB['日期']).dt.month

#按照城市和月份分組,計算每組的平均氣溫
grouped_AB = data_AB.groupby(['城市', '月份'])['平均溫度'].mean().reset_index()

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

#打印結(jié)果
grouped_AB

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

9.繪制廣州、河源、惠州和深圳每日平均溫度的折線圖

import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
# 篩選出廣州和湛江的數(shù)據(jù)
gz_data = data[data['城市'] == '廣州']
hy_data = data[data['城市'] == '河源']
hz_data = data[data['城市'] == '惠州']
sz_data = data[data['城市'] == '深圳']

# 提取日期和平均溫度數(shù)據(jù)
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='深圳')
# 獲取圖的坐標(biāo)信息
coordinates = plt.gca()
# 設(shè)置x軸每個刻度的間隔天數(shù)
xLocator = mpl.ticker.MultipleLocator(30)
coordinates.xaxis.set_major_locator(xLocator)
# 將日期旋轉(zhuǎn)30°
plt.xticks(rotation=30)
plt.xticks(fontsize=8)
plt.ylabel("溫度(℃)")
plt.xlabel("日期")
plt.legend()
plt.savefig("廣河惠深每日平均溫度折線圖.png")
plt.show()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

10.繪制城市為廣州、惠州、深圳、河源的月平均氣溫數(shù)據(jù)

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)

#設(shè)置圖例和標(biāo)題
ax.legend()
ax.set_title('廣州、惠州、深圳、河源每月氣溫折線圖')

#顯示圖形
plt.show()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

11.繪制四個城市數(shù)據(jù)對比


import matplotlib.pyplot as plt

#創(chuàng)建一個畫布
fig, ax = plt.subplots(figsize=(10, 5))

#繪制廣州各類天氣條形圖
ax.bar(df5['新天氣'], df5['天數(shù)'], width=0.2, label='廣州')

#繪制惠州各類天氣條形圖
ax.bar(df7['新天氣'], df7['天數(shù)'], width=0.2, label='惠州', alpha=0.7)

#繪制河源各類天氣條形圖
ax.bar(df6['新天氣'], df6['天數(shù)'], width=0.2, label='河源', alpha=0.7)

#繪制深圳各類天氣條形圖
ax.bar(df8['新天氣'], df8['天數(shù)'], width=0.2, label='深圳', alpha=0.7)

#設(shè)置圖例
ax.legend()

#設(shè)置 x 軸標(biāo)簽和標(biāo)題
ax.set_xlabel('天氣類型')
ax.set_ylabel('天數(shù)')
ax.set_title('廣州、惠州、河源、深圳各類天氣天數(shù)對比')

#顯示圖表
plt.show()

?Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

12.各個城市天氣占比

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

# 讀取csv文件并轉(zhuǎn)換為列表格式
df = pd.read_csv('df5.csv')
data_list = df[['新天氣', '天數(shù)']].values.tolist()

# 生成餅圖
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="廣州各類天氣天數(shù)占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter=""))
pie.render_notebook()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

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

# 讀取csv文件并轉(zhuǎn)換為列表格式
df = pd.read_csv('df6.csv')
data_list = df[['新天氣', '天數(shù)']].values.tolist()

# 生成餅圖
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="河源各類天氣天數(shù)占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter=""))
pie.render_notebook()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

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

# 讀取csv文件并轉(zhuǎn)換為列表格式
df = pd.read_csv('df7.csv')
data_list = df[['新天氣', '天數(shù)']].values.tolist()

# 生成餅圖
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="惠州各類天氣天數(shù)占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter=""))
pie.render_notebook()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

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

# 讀取csv文件并轉(zhuǎn)換為列表格式
df = pd.read_csv('df8.csv')
data_list = df[['新天氣', '天數(shù)']].values.tolist()

# 生成餅圖
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="深圳各類天氣天數(shù)占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter=""))
pie.render_notebook()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

13.統(tǒng)計四個城市每日氣溫折線圖

import matplotlib.pyplot as plt
import matplotlib as mpl
import pandas as pd
# 篩選出廣州和湛江的數(shù)據(jù)
gz_data = data[data['城市'] == '廣州']
hy_data = data[data['城市'] == '河源']
hz_data = data[data['城市'] == '惠州']
sz_data = data[data['城市'] == '深圳']

# 提取日期和平均溫度數(shù)據(jù)
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='深圳')
# 獲取圖的坐標(biāo)信息
coordinates = plt.gca()
# 設(shè)置x軸每個刻度的間隔天數(shù)
xLocator = mpl.ticker.MultipleLocator(30)
coordinates.xaxis.set_major_locator(xLocator)
# 將日期旋轉(zhuǎn)30°
plt.xticks(rotation=30)
plt.xticks(fontsize=8)
plt.ylabel("溫度(℃)")
plt.xlabel("日期")
plt.legend()
plt.savefig("廣-惠-河-深折線圖")
plt.show()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

14.讀取四個城市各類天氣天數(shù)對比圖

import matplotlib.pyplot as plt
from pyecharts.charts import Bar
# 讀取廣州數(shù)據(jù)并生成柱狀圖
df1 = pd.read_csv('df5.csv')
data_list1 = df1[['新天氣', '天數(shù)']].values.tolist()

# 讀取河源數(shù)據(jù)并生成柱狀圖
df2 = pd.read_csv('df6.csv')
data_list2 = df2[['新天氣', '天數(shù)']].values.tolist()

# 讀取惠州數(shù)據(jù)并生成柱狀圖
df3 = pd.read_csv('df7.csv')
data_list3 = df3[['新天氣', '天數(shù)']].values.tolist()

# 讀取深圳數(shù)據(jù)并生成柱狀圖
df4 = pd.read_csv('df8.csv')
data_list4 = df4[['新天氣', '天數(shù)']].values.tolist()
# 合并 x 軸數(shù)據(jù)
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, '天數(shù)'].tolist()[0] if x in df1['新天氣'].tolist() else 0 for x in x_data])
bar.add_yaxis("河源", [df2.loc[df2['新天氣']==x, '天數(shù)'].tolist()[0] if x in df2['新天氣'].tolist() else 0 for x in x_data])
bar.add_yaxis("惠州", [df3.loc[df3['新天氣']==x, '天數(shù)'].tolist()[0] if x in df3['新天氣'].tolist() else 0 for x in x_data])
bar.add_yaxis("深圳", [df4.loc[df4['新天氣']==x, '天數(shù)'].tolist()[0] if x in df4['新天氣'].tolist() else 0 for x in x_data])
bar.set_global_opts(title_opts=opts.TitleOpts(title="廣州惠州河源深圳各類天氣天數(shù)對比圖"),
                     xaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(rotate=-45)),
                     legend_opts=opts.LegendOpts(pos_left="center"))
bar.render_notebook()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

?15.讀取四個城市當(dāng)中一個城市的天氣天數(shù)對比圖

import matplotlib.pyplot as plt
from pyecharts.charts import Bar
# 讀取惠州數(shù)據(jù)并生成柱狀圖
df3 = pd.read_csv('df7.csv')
data_list3 = df3[['新天氣', '天數(shù)']].values.tolist()
# 生成柱狀圖
bar = Bar()
bar.add_xaxis(x_data)
bar.add_yaxis("惠州", [df3.loc[df3['新天氣']==x, '天數(shù)'].tolist()[0] if x in df3['新天氣'].tolist() else 0 for x in x_data])
bar.set_global_opts(title_opts=opts.TitleOpts(title="廣州惠州河源深圳各類天氣天數(shù)對比圖"),
                     xaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(rotate=-45)),
                     legend_opts=opts.LegendOpts(pos_left="center"))
bar.render_notebook()

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

當(dāng)今社會,數(shù)據(jù)越來越重要,因此,儀表盤成為了一種非常流行的數(shù)據(jù)可視化方式。通過使用儀表盤,用戶可以更輕松地理解數(shù)據(jù),從而做出更好的決策。在本文中,我們將介紹如何使用前端網(wǎng)頁來實(shí)現(xiàn)儀表盤文字。

首先,我們需要一個基本的 HTML 文件。在這個文件中,我們將創(chuàng)建一個儀表盤的基本框架,并使用 CSS 來設(shè)置樣式。在這個基本框架中,我們將包含一個 div 元素,用于顯示儀表盤的文本。我們將使用 JavaScript 來動態(tài)地更新這個文本。

<!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"  >

</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": "廣州河源惠州深圳各類天氣天數(shù)對比圖",
        "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": ""
          },
          "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": "廣州各類天氣天數(shù)占比",
          "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": ""
          },
          "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": ""
          },
          "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": "惠州各類天氣天數(shù)占比",
          "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": ""
          },
          "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": "深圳各類天氣天數(shù)占比",
          "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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年每月平均溫度發(fā)生變化的趨勢",
              "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": [
            "天數(shù)"
          ],
          "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℃的天數(shù)",
          "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>

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化

博主寫代碼來之不易

關(guān)注博主下篇更精彩

一鍵三連?。?!

一鍵三連!??!
感謝一鍵三連!

Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化文章來源地址http://www.zghlxwxcb.cn/news/detail-495518.html

到了這里,關(guān)于Python爬取城市天氣數(shù)據(jù),并作數(shù)據(jù)可視化的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點(diǎn)僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實(shí)不符,請點(diǎn)擊違法舉報進(jìn)行投訴反饋,一經(jīng)查實(shí),立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費(fèi)用

相關(guān)文章

  • 當(dāng)~python批量獲取某電商:商品數(shù)據(jù)并作可視化

    當(dāng)~python批量獲取某電商:商品數(shù)據(jù)并作可視化

    前言 嗨嘍,大家好呀~這里是愛看美女的茜茜吶 開發(fā)環(huán)境: 首先我們先來安裝一下寫代碼的軟件(對沒安裝的小白說) Python 3.8 / 編譯器 Pycharm 2021.2版本 / 編輯器 專業(yè)版是付費(fèi)的 文章下方名片可獲取魔法永久用~ 社區(qū)版是免費(fèi)的 第三方模塊使用: requests pip install requests 數(shù)據(jù)請

    2024年02月04日
    瀏覽(24)
  • 基于python的網(wǎng)絡(luò)爬蟲爬取天氣數(shù)據(jù)及可視化分析(Matplotlib、sk-learn等,包括ppt,視頻)

    基于python的網(wǎng)絡(luò)爬蟲爬取天氣數(shù)據(jù)及可視化分析(Matplotlib、sk-learn等,包括ppt,視頻)

    基于python的網(wǎng)絡(luò)爬蟲爬取天氣數(shù)據(jù)及可視化分析 可以看看演示視頻。 基于Python爬取天氣數(shù)據(jù)信息與可視化分析 本論文旨在利用Python編程語言實(shí)現(xiàn)天氣數(shù)據(jù)信息的爬取和可視化分析。天氣數(shù)據(jù)對于人們的生活和各個領(lǐng)域都有著重要的影響,因此準(zhǔn)確獲取和有效分析天氣數(shù)據(jù)對

    2024年02月03日
    瀏覽(24)
  • Flask+echarts爬取天氣預(yù)報數(shù)據(jù)并實(shí)現(xiàn)可視化

    Flask+echarts爬取天氣預(yù)報數(shù)據(jù)并實(shí)現(xiàn)可視化

    右鍵新建一個crawl.py文件,代碼如下,將爬取到的數(shù)據(jù)存儲到tianqi.txt文件中, 右鍵新建一個flask01.py的文件,對爬取到的數(shù)據(jù)進(jìn)行讀取,并轉(zhuǎn)換為列表類型,傳遞給index.html頁面,echarts的圖表樣例負(fù)責(zé)接收并渲染,代碼如下, 在根目錄下,新建一個名為templates目錄,該目錄名

    2024年02月11日
    瀏覽(26)
  • 【工作記錄】基于可視化爬蟲spiderflow實(shí)戰(zhàn)天氣數(shù)據(jù)爬取@20230618

    【工作記錄】基于可視化爬蟲spiderflow實(shí)戰(zhàn)天氣數(shù)據(jù)爬取@20230618

    之前寫過一篇關(guān)于可視化爬蟲spiderflow的文章,介紹了基本語法并實(shí)戰(zhàn)了某校園新聞數(shù)據(jù)的爬取。 還有一篇文章介紹了基于docker-compose快速部署spiderflow的過程,需要部署的話可參考該文章。 文章鏈接如下: 可視化爬蟲框架spiderflow入門及實(shí)戰(zhàn) 【工作記錄】基于docker-compose快速部

    2024年02月11日
    瀏覽(28)
  • python天氣數(shù)據(jù)可視化分析

    python天氣數(shù)據(jù)可視化分析

    網(wǎng):tianqihoubao 對深圳近幾月的天氣進(jìn)行分析可視化 ? ?get函數(shù) 用于get網(wǎng)頁數(shù)據(jù)并進(jìn)行分析講需要的天氣數(shù)據(jù)進(jìn)行導(dǎo)出 ?數(shù)據(jù)都在tr便簽里所以只提取tr標(biāo)簽里的數(shù)據(jù) ?調(diào)用? 提取深圳近三個月的數(shù)據(jù),并用pandas庫中的concat將三個get完的數(shù)據(jù)進(jìn)行整合 表格展示 導(dǎo)出的表格數(shù)據(jù)

    2024年02月11日
    瀏覽(25)
  • Python采集天氣數(shù)據(jù),做可視化分析【附源碼】

    Python采集天氣數(shù)據(jù),做可視化分析【附源碼】

    動態(tài)數(shù)據(jù)抓包 requests發(fā)送請求 結(jié)構(gòu)化+非結(jié)構(gòu)化數(shù)據(jù)解析 python 3.8 運(yùn)行代碼 pycharm 2021.2 輔助敲代碼 requests 如果安裝python第三方模塊: win + R 輸入 cmd 點(diǎn)擊確定, 輸入安裝命令 pip install 模塊名 (pip install requests)回車 在pycharm中點(diǎn)擊Terminal(終端) 輸入安裝命令 發(fā)送請求 獲取數(shù)據(jù) 解析

    2024年02月09日
    瀏覽(29)
  • 【python】python課設(shè) 天氣預(yù)測數(shù)據(jù)分析及可視化(完整源碼)

    【python】python課設(shè) 天氣預(yù)測數(shù)據(jù)分析及可視化(完整源碼)

    1. 前言 本文介紹了天氣預(yù)測數(shù)據(jù)分析及可視化的實(shí)現(xiàn)過程使用joblib導(dǎo)入模型和自定義模塊GetModel獲取模型,輸出模型的MAE。使用pyecharts庫進(jìn)行天氣數(shù)據(jù)的可視化,展示南京當(dāng)日天氣數(shù)據(jù)的表格??傮w來說,該文敘述通過調(diào)用自定義模塊和第三方庫,獲取天氣數(shù)據(jù)、進(jìn)行模型預(yù)

    2024年02月04日
    瀏覽(26)
  • Python項(xiàng)目開發(fā):Flask基于Python的天氣數(shù)據(jù)可視化平臺

    Python項(xiàng)目開發(fā):Flask基于Python的天氣數(shù)據(jù)可視化平臺

    目錄 步驟一:數(shù)據(jù)獲取 步驟二:設(shè)置Flask應(yīng)用程序 步驟三:處理用戶輸入和數(shù)據(jù)可視化 步驟四:渲染HTML模板 總結(jié) 在這個數(shù)字化時代,數(shù)據(jù)可視化已經(jīng)成為我們理解和解釋信息的重要手段。在這個項(xiàng)目中,我們將使用Python語言來開發(fā)一個基于Flask框架的天氣數(shù)據(jù)可視化平臺

    2024年02月09日
    瀏覽(33)
  • 基于Python的城市熱門美食數(shù)據(jù)可視化分析系統(tǒng)

    基于Python的城市熱門美食數(shù)據(jù)可視化分析系統(tǒng)

    溫馨提示:文末有 CSDN 平臺官方提供的學(xué)長 QQ 名片 :) ? ????????本項(xiàng)目利用網(wǎng)絡(luò)爬蟲技術(shù)從XX點(diǎn)評APP采集北京市的餐飲商鋪數(shù)據(jù),利用數(shù)據(jù)挖掘技術(shù)對北京美食的分布、受歡迎程度、評價、評論、位置等情況進(jìn)行了深入分析,方便了解城市美食店鋪的運(yùn)營狀況、消費(fèi)者需

    2024年02月03日
    瀏覽(33)
  • Python爬取貓眼電影票房 + 數(shù)據(jù)可視化

    Python爬取貓眼電影票房 + 數(shù)據(jù)可視化

    對貓眼電影票房進(jìn)行爬取,首先我們打開貓眼 接著我們想要進(jìn)行數(shù)據(jù)抓包,就要看網(wǎng)站的具體內(nèi)容,通過按F12,我們可以看到詳細(xì)信息。 通過兩個對比,我們不難發(fā)現(xiàn) User-Agent 和 signKey 數(shù)據(jù)是變化的(平臺使用了數(shù)據(jù)加密) 所以我們需要對User-Agent與signKey分別進(jìn)行解密。 通

    2024年04月24日
    瀏覽(26)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包