Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to have a color bar divided into 5 colors. One color from 0 to 20, another until 40, and so on until 100.

What I have done so far is:

set palette maxcolors 5

But this doesn't set the boundries of each color in the colorbar

Do you have suggestions?

share|improve this question

1 Answer

To avoid setting the boundaries manually, you're on the right track. What might help is to set the color bar's range:

set cbrange [0:100]

That way the palette will be divided into 5 colors just between 0 and 100, instead of having the limits determined by the data/function being plotted.

share|improve this answer
But actualy what I need is dynamically set. My range will go to 100, starting from 0 or upwards. So what I would like to do i have a color until 40, one until 70, 85, 95, and 100. – user1075551 Feb 20 at 16:26
@user1075551 -- You should make that clear in your question. That makes this a significantly harder problem. – mgilson Feb 20 at 18:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.