Using Gnuplot I’ll build the following graph -
Now, as you can see in the image, between the lines it is difficult to identify the block at the end. Therefore, I would like to color the grid alternately with a different color or style.
The code right now I'm using to color the grid -
set style line 12 lc rgb '#808080' lt 0 lw 1
set grid back ls 12
However, I cannot find a way to get the grid and set it alternately in a different style. Is this possible in Gnuplot?
I mean, is it possible to have a different line style for primary and secondary ticks in the gnuplot grid?
Thanks!

source
share