Hi list,

When I add titles to axes in graphxyz the titles come out slanted. Is
this the intended behaviour? Do I just require a clever transformation
to put them right?

This is a small modification of PyX-0.10/examples/3dgraphs/surface.py:
it requires the data file in that directory and demonstrates the
problem:

#!/usr/bin/env python
from pyx import *

xaxis = graph.axis.linear(title="This is the x axis")
yaxis = graph.axis.linear(title="This is the y axis")
g = graph.graphxyz(size=4, x=xaxis, y=yaxis, x2=None, y2=None)
g.plot(graph.data.file("surface.dat", x=1, y=2, z=3), [graph.style.surface()])
g.dodata()
g.writeEPSfile("surface")



James

-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
PyX-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pyx-user

Reply via email to