# Plot yearly electricity consumption. # See http://gnuplot.sourceforge.net/demo/finance.html set terminal png size 320,240 set output "out/yearly/16WWYearlyElectricityConsumption.png.tmp" set title "Yearly Electricity 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/16WWYearlyElectricityConsumption.dat" \ using 1:2 notitle with histeps