|
From:
<br...@ph...> - 2006-02-22 14:25:05
|
Daniel Graupner wrote:
> #define linestyle 1
> set style line 1 lt 2 lc rgb "yellow" lw 3
> # define fill style for histograms
> set style fill solid 0.8
>
> Now I want to plot a histogram with my defined yellow borderlines. I
> Assume that the following
>
> plot "Pen100-VBI-10.out" using 1:2 "BHR %lf %lf %lf %lf %lf" title
> "VBI10" linestyle 1 with boxes
As an aside:
plot "Pen100-VBI-10.out" using 2:3 title "VBI10" \
linestyle 1 with boxes
would probably be sufficient ;-)
> will plot me histograms with yellow borderlines and filled with 80%
> yellow. Well, the fill is correct, but I have no borderlines.
Are you sure you would be able to make out a yellow border line around
an 80% yellow box on white background, especially if unlike your
linestyle 1, it won't be output in triple width? I suggest you try
"set style fill solid .8 border 1" to really see the difference.
|