moving around of examples and documentation of linkedaxis example
[PyX/mjg.git] / examples / axis / link.py
blobeb40364e3c4b92fddb47c21bf9514b66abdc0fd6
1 import math
2 from pyx import *
4 c = canvas.canvas()
6 g1 = c.insert(graph.graphxy(width=8))
7 g1.plot(graph.data.function("y(x)=2*exp(-30*x)-exp(-3*x)", min=0, max=1))
9 g2 = c.insert(graph.graphxy(width=8, ypos=g1.height+0.5,
10 x=graph.axis.linkedaxis(g1.axes["x"])))
11 g2.plot(graph.data.function("y(x)=cos(20*x)*exp(-2*x)"))
13 c.writeEPSfile("link")
14 c.writePDFfile("link")