ovid.plt 1.2 KB

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