Created
May 8, 2012 22:26
-
-
Save tetsuok/2639931 to your computer and use it in GitHub Desktop.
Code to change colors of various components in Gnuplot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change colors of elements in Gnuplot | |
# change a color of border. | |
set border lw 3 lc rgb "white" | |
# change text colors of tics | |
set xtics textcolor rgb "white" | |
set ytics textcolor rgb "white" | |
# change text colors of labels | |
set xlabel "X" textcolor rgb "white" | |
set ylabel "Y" textcolor rgb "white" | |
# change a text color of key | |
set key textcolor rgb "white" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Appreciate it