감동, 마음이 움직이는 것
[gnuplot] change background color 본문
Tips (Utility, Computer Language, and etc.)
[gnuplot] change background color
Struggler J. 2017. 1. 4. 19:09set 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]
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] histogram data file에서 바로 binning해서그리기 + 결과 저장하기 (0) | 2017.01.04 |
---|---|
[gnuplot] add value labels to the top of bars in a bar chart (0) | 2017.01.04 |
[linux] command에서 for loop 사용하기 (if else문도 함께 사용) (2) | 2017.01.03 |
[Mac os] top에서 프로세스 kill하기 (0) | 2016.11.16 |
[Mac os] 화면 분할 기능 "스플릿 뷰(split view)" (0) | 2016.11.15 |