hello,

i got stuck finding how i could perform certain customizations of my graphs.
so far i managed to avoid printing tick labels in the following way:

class nolabel:
    def labels(self,ticks):
        for tick in ticks:
            tick.label = ""

c = pyx.canvas.canvas()
g = c.insert(pyx.graph.graphxy(width=w, height=h,
y=pyx.graph.axis.logarithmic(texter=nolabel())))
g.plot(...)

i would want to also change the thickness of the box containing the function
plot

i think painter class would be the place to look at but only tick attributes
are mentioned.

thanx in advance

/Avventi
------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev
_______________________________________________
PyX-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pyx-user

Reply via email to