Bar Graph/Chart Generator

There is a very useful tool for bar charts. It's simple but very powerful. Released under the GPL. Hope someone could add it to port.

http://www.burningcutlery.com/derek/bargraph/

http://code.google.com/p/bargraphgen/

cluster.png


stacked_var.png
 
Hi,

I see there is a patch for GnuPlot
Code:
-    if ((0 < x && x < term->xmax) && (0 < y && y < term->ymax))
+    if ((0 < x && x < term->xmax*xsize) && (0 < y && y < term->ymax*ysize))

So what do you want exactly?

Solution A. A port who would install a patched GnuPlot + the bargraphgen scripts.

It would conflict then with the math/gnuplot port. Ports testing /usr/local/bin/gnuplot as gnuplot requirement would install without problem. This is the case of math/maxima.

Solution B. A port who would install the Perl script and dependencies, so you have a bargraph command to launch the script.
 
Back
Top