First time here? Check out the FAQ!
answered 2016-10-22 11:07:16 +0100
A quite simple way without touching matplotlib configuration:
kwds = {'color':'red','fontsize':16,'fontweight':'bold','rotation':30} G = Graphics() G += text('TEST',(2,1),**kwds) G += text('TEST',(-2,1),**kwds) G.show()