I'm using gnuplot to generate some plots with an x axis ranging from 0 to 20. Is it possible to set the color of some tics or axis numbers to a different color from the standard black?
I only found a way to change the color of the all the numbers in the x axis red with set xtics textcolor rgb "red"
.
What I need is to be able to change the color of the tic or number at x=0,3,6,...
to red and all the others should stay black. Is this possible with gnuplot?
set arrow from first 1.5, graph 0 to first 1.5, graph 0.01 nohead linecolor "red"
. - user8153