Update of /cvsroot/pyx/pyx/examples/bargraphs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21081/examples/bargraphs
Modified Files:
stacked.py
Log Message:
widen the graph to prevent overprints
Index: stacked.py
===================================================================
RCS file: /cvsroot/pyx/pyx/examples/bargraphs/stacked.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** stacked.py 7 Jul 2005 14:02:32 -0000 1.3
--- stacked.py 26 Aug 2005 16:44:35 -0000 1.4
***************
*** 9,13 ****
from pyx import *
! g = graph.graphxy(width=8, x=graph.axis.bar())
g.plot(graph.data.file("stacked.dat", xname=0, y=2, stack=3),
[graph.style.bar(),
--- 9,13 ----
from pyx import *
! g = graph.graphxy(width=14, height=6, x=graph.axis.bar())
g.plot(graph.data.file("stacked.dat", xname=0, y=2, stack=3),
[graph.style.bar(),
|