Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3530
| From | Dieter Britz <dieterhansbritz@gmail.com> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Black on dark grey |
| Date | 2017-01-17 10:49 +0000 |
| Organization | A noiseless patient Spider |
| Message-ID | <o5ksrj$a8j$1@dont-email.me> (permalink) |
I have some scripts that produce plots of publication statistics,
see for example http://www.dieterbritz.dk/fusweb/stats.html.
As you see, the plots are black on dark grey. This has not been
the case until now, possibly due to an update of gnuplot. In the script
that produces the plot, I have this:
set obj rect from graph 0, graph 0 to graph 1, graph 1 back \
fc rgb '#FFEFD5' fillstyle solid 0.5
This was given to me by someone some time ago. I assume that
the problem lies in that statement, but the colour specified should
give me pale yellow. What must I do to change it back to pale yellow?
OK, in case I am wrong about the problem area, I include one whole
script, running under Linux:
gnuplot << eof
set term postscript eps enh 30
set size 1.5
set pointsize 1.2
set nokey
set time
set title "No. N of submissions/month; found $1"
set output 'sub.eps'
set bmargin 5
set lmargin 15
set rmargin 5
set xlabel
set ylabel
set label "Year" at 2004.5,-8
set label "N" at 1986.8,25
set xrange [1989:2016]
set xzeroaxis
set tics front
set xtics 1990, 5, 2015 scale -3,-1.5
set mxtics 5
set obj rect from graph 0, graph 0 to graph 1, graph 1 back \
fc rgb '#FFEFD5' fillstyle solid 0.5
set yrange [0:55]
set ytics 0, 10, 50
plot 'sub.dat' w p pt 6
#
exit
eof
Thanks for any help.
--
Dieter Britz
Back to comp.graphics.apps.gnuplot | Previous | Next — Next in thread | Find similar
Black on dark grey Dieter Britz <dieterhansbritz@gmail.com> - 2017-01-17 10:49 +0000 Re: Black on dark grey Karl Ratzsch <mail.kfr@gmx.net> - 2017-01-17 13:32 +0100
csiph-web