diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 602e6e25c0607e614461b9d853164aaa85140581..ab99223535b91bc740a41231e56b18f102d039dd 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,13 +4,11 @@
-
-
-
-
-
+
+
+
-
+
@@ -85,6 +83,7 @@
"Python.12_二维表格.executor": "Debug",
"Python.12_字典.executor": "Debug",
"Python.12_循环中断.executor": "Debug",
+ "Python.12_测试颜色.executor": "Debug",
"Python.12_集合课后练习.executor": "Debug",
"Python.13_全局修改.executor": "Debug",
"Python.13_字典的常用操作.executor": "Debug",
@@ -126,7 +125,7 @@
-
+
@@ -173,7 +172,7 @@
-
+
@@ -182,12 +181,12 @@
-
+
-
+
@@ -196,7 +195,7 @@
-
+
@@ -205,12 +204,12 @@
-
+
-
+
@@ -219,7 +218,7 @@
-
+
@@ -228,12 +227,12 @@
-
+
-
+
@@ -244,11 +243,11 @@
+
-
@@ -285,7 +284,7 @@
-
+
@@ -399,7 +398,15 @@
1723518447733
-
+
+
+ 1723606844887
+
+
+
+ 1723606844887
+
+
@@ -417,7 +424,8 @@
-
+
+
@@ -445,7 +453,7 @@
-
+
@@ -472,7 +480,7 @@
-
+
\ No newline at end of file
diff --git "a/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/11_GDP\345\212\250\346\200\201\346\237\261\347\212\266\345\233\276\345\274\200\345\217\221.py" "b/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/11_GDP\345\212\250\346\200\201\346\237\261\347\212\266\345\233\276\345\274\200\345\217\221.py"
index 1eb49c8be0295129bf9624880dd75e1359976c1c..8182de44acadd694b968f21449ba4f6b3af5f1b6 100644
--- "a/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/11_GDP\345\212\250\346\200\201\346\237\261\347\212\266\345\233\276\345\274\200\345\217\221.py"
+++ "b/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/11_GDP\345\212\250\346\200\201\346\237\261\347\212\266\345\233\276\345\274\200\345\217\221.py"
@@ -51,20 +51,14 @@ for year in sorted_year_list:
label_opts=opts.LabelOpts(position="right", font_size="15px"),
# itemstyle_opts=opts.ItemStyleOpts(color=colors[:len(y_data)]),
)
- # for i in range(len(x_data)):
- # bar.add_xaxis([x_data[i]])
- # bar.add_yaxis(
- # "GDP(亿)",
- # [y_data[i]],
- # label_opts=opts.LabelOpts(position="right"),
- # itemstyle_opts=opts.ItemStyleOpts(color=colors[i % len(colors)])
- # )
# 反转x轴和y轴
bar.reversal_axis()
# 设置每一年的图表的标题
bar.set_global_opts(
- title_opts=opts.TitleOpts(title=f"{year}年全球前8GDP数据")
+ title_opts=opts.TitleOpts(title=f"{year}年全球前8GDP数据"),
+ xaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(font_size=12)),
+ yaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(font_size=12)),
)
timeline.add(bar, str(year))
diff --git "a/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/12_\346\265\213\350\257\225\351\242\234\350\211\262.py" "b/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/12_\346\265\213\350\257\225\351\242\234\350\211\262.py"
index 8787c83efdc9b32173b53e2e40ddf78de4c64c2f..b6fe8cc9409adaa5536cb363775712dcaba3edef 100644
--- "a/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/12_\346\265\213\350\257\225\351\242\234\350\211\262.py"
+++ "b/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/12_\346\265\213\350\257\225\351\242\234\350\211\262.py"
@@ -45,13 +45,13 @@ for year in sorted_year_list:
x_data.reverse()
y_data.reverse()
bar.add_xaxis(x_data)
- colors=['rgba(128, 128, 128, 0.5)']
+ colors = ['rgba(128, 128, 128, 0.5)']
# colors=['rgba(128, 128, 128, 0.5)','red','red','red','red','red','red','red']
bar.add_yaxis("红包数据", y_data
, itemstyle_opts=opts.ItemStyleOpts(
- # color="red"
- color="blue"
- )
+ # color="red"
+ color="blue"
+ )
, label_opts=LabelOpts(position="right"))
bar.reversal_axis()
diff --git "a/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/1960-2019\345\205\250\347\220\203GDP\345\211\2158\345\233\275\345\256\266.html" "b/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/1960-2019\345\205\250\347\220\203GDP\345\211\2158\345\233\275\345\256\266.html"
index 20b13dfb940769a5494aa5714cd3ee19ace9f763..59fa87f4b5bd267b922cb025201c06bb940fa8eb 100644
--- "a/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/1960-2019\345\205\250\347\220\203GDP\345\211\2158\345\233\275\345\256\266.html"
+++ "b/09_\345\217\257\350\247\206\345\214\226\346\241\210\344\276\213/1960-2019\345\205\250\347\220\203GDP\345\211\2158\345\233\275\345\256\266.html"
@@ -7,11 +7,11 @@
-
+