Hi:
Please, can you tell me how rotate in 90 degrees this gnuplot
graphics ?
I want a horizontal histogram, but I=B4m only getting a vertical
histogram:
reset
set boxwidth 0.66 absolute
set style fill solid 1.00 noborder
set style line 1 lw 0 lc rgb "#000080"
set style line 2 lw 0 lc rgb "#33339A"
set style line 3 lw 0 lc rgb "#C0C0C0"
set style line 4 lw 0 lc rgb "#FF9A00"
set style line 5 lw 0 lc rgb "#FF0000"
set style increment user
set key off
set style histogram rowstacked
set style data histograms
set xtics border in scale 1,0.5 nomirror rotate by 90
unset ytics
unset border
set yrange [0:100]
# just formating until here
set terminal emf size 300,700
set output 'stackedbar.emf'
plot 'stackedbar2.dat' using 3:xticlabels(2), '' using 4, '' using 5,
\
'' using 6, '' using 7 ,\
'' using 1:($3/2):3 with labels rotate by 90 textcolor rgb "white",
\
'' using 1:($3+$4/2):4 with labels rotate by 90 textcolor rgb
"white",\
'' using 1:($3+$4+$5/2):5 with labels rotate by 90 ,\
'' using 1:($3+$4+$5+$6/2):6 with labels rotate by 90 ,\
'' using 1:($3+$4+$5+$6+$7/2):7 with labels rotate by 90
set output


|