aboutsummaryrefslogtreecommitdiffstats
path: root/examples/bargraphs/month.jl
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-02-21 18:08:55 -0800
committerbnewbold <bnewbold@robocracy.org>2016-02-21 18:08:55 -0800
commitb24f282bca4af63982937c10835063d3e6e9eb74 (patch)
treefd8c58601beb3964ccecf4709f7b28944fc1c36b /examples/bargraphs/month.jl
parent84572be10cdfc852530787a5dc78ddef3e0f23cd (diff)
downloadPyX.jl-b24f282bca4af63982937c10835063d3e6e9eb74.tar.gz
PyX.jl-b24f282bca4af63982937c10835063d3e6e9eb74.zip
add many, many more example conversions. still not complete
Diffstat (limited to 'examples/bargraphs/month.jl')
-rw-r--r--examples/bargraphs/month.jl27
1 files changed, 27 insertions, 0 deletions
diff --git a/examples/bargraphs/month.jl b/examples/bargraphs/month.jl
new file mode 100644
index 0000000..8f5b49d
--- /dev/null
+++ b/examples/bargraphs/month.jl
@@ -0,0 +1,27 @@
+
+# Original Python:
+
+# from pyx import *
+
+# mypainter = graph.axis.painter.bar(nameattrs=[trafo.rotate(45),
+# text.halign.right],
+# innerticklength=0.1)
+# myaxis = graph.axis.bar(painter=mypainter)
+
+# g = graph.graphxy(width=8, x=myaxis)
+# g.plot(graph.data.file("minimal.dat", xname=1, y=2), [graph.style.bar()])
+# g.writeEPSfile("month")
+# g.writePDFfile("month")
+# g.writeSVGfile("month")
+
+using PyX
+mypainter = graph_axis_painter.bar(nameattrs=[trafo.rotate(45),
+ text_halign.right],
+ innerticklength=0.1)
+myaxis = graph_axis.bar(painter=mypainter)
+
+g = graph.graphxy(width=8, x=myaxis)
+plot(g, graph_data.file("examples/bargraphs/minimal.dat", xname=1, y=2),
+ [graph_style.bar()])
+writeEPSfile(g, "month")
+writePDFfile(g, "month")