Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a easy way to get points with black outline in gnuplot?

Tags:

gnuplot

Is there a easy way to get points with black outline in gnuplot? I'm using standard color filled point types, for example:

set style line 3  lc rgb '#4682B4' pt 9 ps 0.65

but I need to make sure that the plot will be easily readable in black & white version too. Black outlines would help, how can I add them?

like image 873
Matt Avatar asked Sep 28 '22 06:09

Matt


1 Answers

The simplest "quick and dirty" solution that comes to mind is to plot the data set twice, once with the full symbol style and then with an empty symbol style. For instance:

plot "temp" pt 9 ps 2, "temp" pt 8 ps 2 lc 0 lw 2

enter image description here

like image 200
Miguel Avatar answered Oct 06 '22 01:10

Miguel