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

I have a script that renders graphs in gnuplot. The graphs all end up with an ugly white background. How do I change this? (Ideally, with a command that goes into a gnuplot script, as opposed to a command-line option or something in a settings file)

share|improve this question

3 Answers

You can change the background color by command set object 1 rectangle from screen 0,0 to screen 1,1 fillcolor rgb"green" behind to set the background color to the the color you specified (here is green).

To get more knowledge about setting the background in gnuplot, you can visit this blog. There are even provided methods to set a gradient color background and background pictures. Good luck!

share|improve this answer
up vote 5 down vote accepted

Ooh, found it. It's along the lines of:

set terminal png x222222 xffffff
share|improve this answer
I get obsolete color option. – Pere Jan 19 at 12:46

It is a setting for some terminal (windows use background). Check out colorbox including its bdefault.

/Allan

share|improve this answer

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.