remove none-existing reference
[PyX.git] / examples / axis / painter.py
blob718e9b9368e3cb23f12238f9db3cc768c767fd29
1 from pyx import *
3 mypainter = graph.axis.painter.regular(outerticklength=graph.axis.painter.ticklength.normal,
4 basepathattrs=[style.linewidth.THick, deco.earrow.large])
6 c = graph.axis.pathaxis(path.curve(0, 0, 3, 0, 1, 4, 4, 4),
7 graph.axis.linear(min=0, max=11, title="axis title", painter=mypainter))
8 c.writeEPSfile("painter")
9 c.writePDFfile("painter")