how can I change the fill colour for columnstacked histogram? My data looks like:
xticlabel_1 xticlabel_2 xticlabel_3
10 20 15
and my script:
set datafile separator "\t"
set term postscript colour solid
set size 1,0.5
set output 'duplication_stats.eps'
set style data histograms
set style histogram columnstacked
set boxwidth 0.5
set style fill solid border -1
set tics scale 0.0
set ytics
set xtics rotate by -20
#
plot 'duplication_stats' using 2 ti col lc rgb "grey"
If I remove "columnstacked", then xtic labels disappear, but the plotted histogram bar is grey, as expected.
If "columnstacked" is used, then the histogram bar is red, and 'lc rgb grey' is simply ignored.
And I want to have both - (1) xtic labels from first row and (2) different colours for histogram bars plotted from different columns.
Do you know how to achieve it?
Thank you very much in advance.