# Plot yearly gas consumption. # See http://gnuplot.sourceforge.net/demo/finance.html set terminal png size 320,240 set output "out/yearly/16WWYearlyGasConsumption.png.tmp" set title "Yearly Gas Consumption kWh" set grid set lmargin 6 set rmargin 2 set tmargin 2 set bmargin 3 set yrange [0:] set xrange [2005:] #set xtics 2 set xtics rotate plot "data/16WWYearlyGasConsumption.dat" \ using 1:2 notitle with histeps