감동, 마음이 움직이는 것

[gnuplot] change background color 본문

Tips (Utility, Computer Language, and etc.)

[gnuplot] change background color

Struggler J. 2017. 1. 4. 19:09
set terminal svg enhanced background rgb 'white'
위는 배경색을 바꿔 주는 옵션이다. 만약 이게 안되는 버전이라면 아래와 같이 사각형을 그림뒤 (behind)에 그려주면 된다.
set object rectangle from screen 0,0 to screen 1,1 behind fillcolor rgb 'white' fillstyle solid noborder

screen을 사용하면 그림 전체 배경색을 바꾸고

graph를 사용하면 프레임안의 배경색만 바뀐다. 

[screen, first, graph의 차이는 다음을 참고: http://folk.uio.no/hpl/scripting/doc/gnuplot/Kawano/label2-e.html]

배경색을 함수로 줘서 그라데이션을 줄 수 도 있다.


참고

[http://stackoverflow.com/questions/27269578/gnuplot-change-background-color]