I'm trying to add a horizontal line to my axes to mark an important y value, so I'm using:
fig = Figure(figsize=(5, 5))
ax = fig.add_axes((0.2, 0.2, 0.6, 0.6))
ax.plot(...)
ax.axhline(100000, xmin=0, xmax=1, linewidth=0.3, color=(0, 0, 0, 0.75))
canvas = FigureCanvasAgg(fig)
canvas.print_figure("chart.pdf", dpi=300)
However I've got a few problems:
- What unit is the linewidth? points?
- The line doesn't seem to respect the alpha value in my colour. It's transparent when
a = 0and opaque whena > 0, there's no semi-transparency. Is this a bug or am I doing something wrong?
I'm using:
Mac OSX 10.6.7, Python 2.7, matplotlib 1.0.1, numpy 1.5.1