0
plot 'a.data' using 1:2:3 w p pt 7 ps 2 lc palette

plots points with colors in the palette, but the color values in the palette automatically range from 0.75 to 0.95 in my case. I would like to set a fixed color range of palette, say from 0 to 1. So how to do it? Thanks!

Lexinton Ave
  • 224
  • 3
  • 10

1 Answers1

1

The color range is controllable with set cbrange:

set cbrange [0:1]
Christoph
  • 47,569
  • 8
  • 87
  • 187