Path: csiph.com!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Multiple coloured point lines Date: Thu, 22 Feb 2024 21:15:12 +0100 Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Thu, 22 Feb 2024 20:15:09 -0000 (UTC) Injection-Info: solani.org; logging-data="510460"; mail-complaints-to="abuse@news.solani.org" User-Agent: Mozilla Thunderbird Cancel-Lock: sha1:O2yl1u3mmgpuqO17ZhK55O2ZFe8= Content-Language: de-DE In-Reply-To: X-User-ID: eJwFwQkBACAIA8BKItuAOPj1j+AdXaYdEAU+PoQ8JtqHZfoqB9tkc/QueORZU7VOyC55wQ/u2Q+1 Xref: csiph.com comp.graphics.apps.gnuplot:4658 The syntax is plot x lc rgb "black", x/2 lc rgb "red" You missed the "lc" specifier. Am 21.02.2024 um 14:21 schrieb db: > Here is a mini example > > gnuplot << eoi > set term postscript enh color eps 24 > set output 'mini.eps' > set xlabel "x" > plot x w p pt 7 rgb 'black', \ >      x/2 w p pt 7 rgb 'red' > quit > eoi > gv mini.eps > > This baulks at the first "rgb": > > gnuplot> plot x w p pt 7 rgb 'black',      x/2 w p pt 7 rgb 'red' >                          ^ >          line 0: unexpected or unrecognized token: rgb > > But if I leave out the second plot line (and terminate > the first properly (no ", \)) it gives me a plot of > a lot of blue points. > Why can't I have several coloured plots?