|
From: Andreas H. <and...@st...> - 2011-07-20 16:47:01
|
On Wed, 2011-07-20 at 08:53 -0700, BBands wrote:
> Example:
>
> set style line 1 lw 2 lc rgb "gold"
> set style line 2 lw 2 lc rgb "purple"
> set style line 4 lw 1 lc rgb "sea-green"
> set style increment user
>
> plot f1(x), f2(x), f3(x), f4(x)
> """
>
> That should get you going with your line color issue.
>
> John - who beat his head on this for quite a while
Thank you very much, John.
Using the following code I don't have to specify anything style related
in the plot line.
set style line 1 lw 4 ps 2 pt 5 lc rgb "red"
set style line 2 lw 4 ps 2 pt 7 lc rgb "blue"
set style line 3 lw 4 ps 2 pt 9 lc rgb "orange"
set style line 4 lw 4 ps 2 pt 11 lc rgb "web-green"
set style line 5 lw 4 ps 2 pt 13 lc rgb "purple"
set style line 6 lw 4 ps 2 pt 15 lc rgb "brown"
set style data yerrorlines
set style increment user
Best regards,
Andreas
|