|
From: xuxa <kr...@On...> - 2009-10-21 08:01:20
|
Mr Sefzick, you are a rockstar. The boxes version works perfectly. Before your response, I didn't realize I was mixing the two types (I was unfamiliar with the "using 1:($2+$3+$4+$5)" format.) Thank you very, very much! It really is amazing how much support you provide at this forum! Kris Thomas Sefzick wrote: > > use either histograms or boxes, not both at the same time. > > histograms: > set style fill solid 1 border -1 > set style data histograms > set style histogram rowstacked > set xtics rotate > plot '/data/personal/prac_data.dat' using 2:xtic(1) title "Personal", '' > using 3 title "On Ensemble", '' using 4 title "Group", '' using 5 title > "Live" > > boxes: > set style fill solid 1 border -1 > set xdata time > set timefmt "%y%m%d" > set xtics rotate > plot '/data/personal/prac_data.dat' using 1:($2+$3+$4+$5) title "Live" > with boxes, '' using 1:($2+$3+$4) title "Group" with boxes, '' using > 1:($2+$3)title "On Ensemble" with boxes, '' using 1:2 title "Personal" > with boxes > > > -- View this message in context: http://www.nabble.com/Stacked-histogram-bars-not-properly-added-tp25987063p25988100.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |