# template for GNUPlot script to draw bar-graphs set title '%%TITLE%%' set boxwidth 0.8 set style fill solid 1.000000 border -1 set ylabel '%%YAXIS%%' set grid y set yrange [0:] set terminal svg set output '%%OUTPUT%%' set xtics rotate by -90 offset -1.25,0 plot '%%INPUT%%' using 0:1:xtic(2) with boxes notitle, \ '' using 0:1:1 with labels rotate by -90 offset -1.25,-2 notitle