Reputation: 3208
If I make a graph using pylab from matlotlib like so...
import pylab as p
x = [0,1,2]
y = [2,4,6]
p.plot(x,y)
p.show()
I want to use the p.text function to add text to the graph. However, I want to put the text in the margin outside of the data window. The text function only accepts x,y coordinates that correspond to the data points rather than absolute x,y pixels coordinates of the entire window. Any idea how I can write text in the margins?
Upvotes: 14
Views: 12470
Reputation: 976
If you're not using the pyplot mode and instead want to do this in an object-orientated method you can do the following:
text.set_transform(fig.transFigure)
Where text is a matplotlib.text.Text object and fig is a matplotlib.figure.Figure object.
Upvotes: 3