tags:

views:

3720

answers:

2

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)

A: 

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

/Allan

Allan Wind
+1  A: 

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

set terminal png x222222 xffffff
raldi