我只修改了this basic example,以便彩条的书脊颜色会改变。 有趣的是,只有the的颜色在变化,而脊柱的颜色没有变化。我在做什么错了?
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()
答案 0 :(得分:1)
可以代替:colorbar.ax.spines ...
使用:
colorbar.outline.set_edgecolor('#f9f2d7')
这适用于颜色栏的所有4个边缘/书脊。