1234567891011121314151617181920212223242526272829 |
- set terminal png nocrop font small size 1024,600
- set output "ovid.png"
- set title "Mobbler downloads from Nokia Store (21st Feb 2011 - 8th April 2013)"
- set key outside right top vertical Right noreverse enhanced autotitles nobox
- set style fill solid
- set yrange [0:100]
- set y2range [0:100]
- set xtics rotate by -45
- set ytics 0, 5
- set y2tics 0, 5
- set xlabel "Month"
- set ylabel "Percent"
- set style line 8 lt 1 lw 1 lc rgb "#FFDE7F"
- set style line 7 lt 1 lw 1 lc rgb "#FFD14C"
- set style line 6 lt 1 lw 1 lc rgb "#FDC82F"
- set style line 5 lt 1 lw 1 lc rgb "#CDAD00"
- set style line 4 lt 1 lw 1 lc rgb "#8B7500"
- set style line 3 lt 1 lw 1 lc rgb "#665500"
- set style line 2 lt 1 lw 1 lc rgb "#5C4B00"
- plot "ovid.data" using 8:xticlabel(1) title column(8) w filledcurves x1 ls 8, \
- "ovid.data" using 7 title column(7) w filledcurves x1 ls 7, \
- "ovid.data" using 6 title column(6) w filledcurves x1 ls 6, \
- "ovid.data" using 5 title column(5) w filledcurves x1 ls 5, \
- "ovid.data" using 4 title column(4) w filledcurves x1 ls 4, \
- "ovid.data" using 3 title column(3) w filledcurves x1 ls 3, \
- "ovid.data" using 2 title column(2) w filledcurves x1 ls 2
|