aboutsummaryrefslogtreecommitdiffstats
path: root/examples/bargraphs/changebar.jl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bargraphs/changebar.jl')
-rw-r--r--examples/bargraphs/changebar.jl17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/bargraphs/changebar.jl b/examples/bargraphs/changebar.jl
new file mode 100644
index 0000000..cbb68aa
--- /dev/null
+++ b/examples/bargraphs/changebar.jl
@@ -0,0 +1,17 @@
+
+# Original Python:
+
+# from pyx import *
+
+# g = graph.graphxy(width=8, x=graph.axis.bar())
+# g.plot(graph.data.file("minimal.dat", xname=0, y=2), [graph.style.changebar()])
+# g.writeEPSfile("changebar")
+# g.writePDFfile("changebar")
+# g.writeSVGfile("changebar")
+
+using PyX
+
+g = graph.graphxy(width=8, x=graph_axis.bar())
+plot(g, graph_data.file("examples/bargraphs/minimal.dat", xname=0, y=2), [graph_style.changebar()])
+writeEPSfile(g, "changebar")
+writePDFfile(g, "changebar")