Skip to content Skip to sidebar Skip to footer

How To Set The Label Fonts As "Time New Roman" By Drawparallels In Python

I have draw a map with latitudes labelled but I want to set the fonts as 'Times New Roman'. How to make it possible? m.drawparallels(parallels,labels=[1,0,0,0],fontsize=12)

Solution 1:

You need to set font family using pyplot of matplotlib.

import matplotlib.pyplot as plt
csfont = {'fontname':'Times New Roman'}
// write your code related to basemap here
plt.title('title',**csfont)
plt.show()

You can also use the following to change font globally.

import matplotlib.pyplot as plt
plt.rcParams["font.family"] = "Times New Roman"

Post a Comment for "How To Set The Label Fonts As "Time New Roman" By Drawparallels In Python"