I have a clustered histogram which looks like this:
What I would like is some kind of border (like xgrid but between clusters, not at cluster middle).
How can I achieve this?
My histogram is build with this:
set encoding iso_8859_1
set terminal postscript enhanced color
set grid ytics
set style data histogram
set style histogram cluster gap 2
set style fill solid border rgb "black"
set auto x
set xtics rotate by -45
set xrange [0:10]
plot 'data.gnu' using 2:xtic(1), \
'' using 3:xtic(1), \
'' using 4:xtic(1), \
'' using 5:xtic(1), \
'' using 6:xtic(1)

