回答編集履歴

1

修正

2020/06/10 16:19

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -1,4 +1,46 @@
1
1
  枠、目盛り、ラベルもすべてオブジェクトで表されているので、そのプロパティ (色など) を変更すればよいです。
2
+
3
+
4
+
5
+ ```txt
6
+
7
+ Axes
8
+
9
+ ├── Axes.spines (dict of text.Spine) - 枠一覧
10
+
11
+ │ ├── Axes.spines["left"] (spines.Spine) - 左の枠
12
+
13
+ │ ├── Axes.spines["top"] (spines.Spine) - 上の枠
14
+
15
+ │ ├── Axes.spines["right"] (spines.Spine) - 右の枠
16
+
17
+ │ └── Axes.spines["bottom"] (spines.Spine) - 下の枠
18
+
19
+ ├── Axes.xaxis (axis.XAxis) - x 軸
20
+
21
+ │ └── Axes.xaxis.label (text.Text) - x 軸のラベル
22
+
23
+ ├── Axes.yaxis (axis.YAxis) - y 軸
24
+
25
+ │ └── Axes.yaxis.label (text.Text) - y 軸のラベル
26
+
27
+ ├── Axes.get_xticklabels() (list of text.Text) - x 軸の目盛りのラベル一覧
28
+
29
+ │ ├── ラベル (text.Text)
30
+
31
+ │ ├── ラベル (text.Text)
32
+
33
+ │ ├── ...
34
+
35
+ ├── Axes.get_yticklabels() (list of text.Text) - y 軸の目盛りのラベル一覧
36
+
37
+ │ ├── ラベル (text.Text)
38
+
39
+ │ ├── ラベル (text.Text)
40
+
41
+ │ ├── ...
42
+
43
+ ```
2
44
 
3
45
 
4
46