I would like to know how to change font size of ticks of ColorbarBase matplotlib . The following lines are an important part of my analysis script that uses ColorbarBase .
import matplotlib.pyplot as plt from matplotlib.colors import LogNorm import matplotlib as mpl axcb = fig.add_axes([0.9, 0.135, 0.02, 0.73]) cb = mpl.colorbar.ColorbarBase(axcb, norm=LogNorm(vmin=7e-5, vmax=1), cmap=plt.cm.CMRmap) cb.set_label("Relative Photon Intensity", labelpad=-1, size=14)
I am using matplotlib ver 1.4.3 with Python 2.7 on OS X.
matplotlib
Akira Okumura
source share