#!/usr/bin/gnuplot set term pngcairo set output 'rast.png' f = '%H:%M %d. %m.' set xlabel 'Čas v UTC ['.f.']' set ylabel 'Wh' set xdata time set timefmt '%s' set format x f set grid set mxtics set mytics set terminal png size 1337,420 set tmargin 3 set rmargin 5 set title 'enosmerni števec porabe elektrike landis+gyr' plot "rast.tsv" using 1:2 title 'Wh' with linespoints pointtype 7;