is there any option in gnuplot to assign the threshold values of a discrete colormap manually? I have already fixed the range, but the color range is automatically adjusted linearly between them.
set cbrange [1.5:5]
set palette maxcolors 4
set palette defined ( 0 '#000fff',\
1 '#ee0000',\
2 '#90ff70',\
3 '#000000')
Say, I want the first color from [1.5,2], the second from [2,2.1], ... as an example.
Thanks