0

我只是稍微修改了这个基本示例,以便颜色条的脊椎颜色会发生变化。有趣的是,只有蜱的颜色在变化,而脊椎的颜色没有变化。我究竟做错了什么?

import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import make_axes_locatable
import numpy as np

fig, ax = plt.subplots()
im = ax.imshow(np.arange(100).reshape((10, 10)))

# create an axes on the right side of ax. The width of cax will be 5%
# of ax and the padding between cax and ax will be fixed at 0.05 inch.
divider = make_axes_locatable(ax)
cax = divider.append_axes("right", size="5%", pad=0.05)

colorbar = fig.colorbar(im, cax=cax)
colorbar.ax.tick_params(axis='both', colors='#f9f2d7')
colorbar.ax.spines['bottom'].set_color('#f9f2d7')
colorbar.ax.spines['top'].set_color('#f9f2d7')
colorbar.ax.spines['right'].set_color('#f9f2d7')
colorbar.ax.spines['left'].set_color('#f9f2d7')

fig.canvas.show()
4

1 回答 1

1

而不是colorbar.ax.spines ...你可以使用:

colorbar.outline.set_edgecolor('#f9f2d7')

这适用于颜色条的所有 4 个边缘/脊椎。

于 2019-12-19T16:22:41.370 回答