I want to have values on bars & colors to be different on each bars. Here is my dat file & script. Also is it possible to label different name for 1st column?
host_down.dat
Espoo Finland 20
Marcoussis 40
Franklin park 70
#!/usr/bin/gnuplot
clear
reset
set key off
set term png size 1200, 600
set output "hostdown.png"
set style data histogram
set style histogram cluster gap 1
set style fill solid border
set boxwidth 0.25
set title "Host Down Plot"
plot 'host_down.dat' using 2:xtic(1) with boxes