1. ホーム
  2. python

[解決済み] matplotlib でプロットの軸、目盛、ラベルの色を変更する方法

2022-07-19 03:40:12

質問

matplotlibとPyQtを使って描いたプロットの軸の色、目盛り、値のラベルを変更したいです。

何かアイデアはありますか?

どのように解決するのですか?

簡単な例として(重複する可能性のある質問より少しきれいな方法を使用して)。

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(111)

ax.plot(range(10))
ax.set_xlabel('X-axis')
ax.set_ylabel('Y-axis')

ax.spines['bottom'].set_color('red')
ax.spines['top'].set_color('red')
ax.xaxis.label.set_color('red')
ax.tick_params(axis='x', colors='red')

plt.show()

<イグ

または

[t.set_color('red') for t in ax.xaxis.get_ticklines()]
[t.set_color('red') for t in ax.xaxis.get_ticklabels()]