Lexinton Ave
Lexinton Ave

Reputation: 254

set palette color range

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!

Upvotes: 1

Views: 848

Answers (1)

Christoph
Christoph

Reputation: 48440

The color range is controllable with set cbrange:

set cbrange [0:1]

Upvotes: 2

Related Questions