I have many charts, each generated by individual Gnuplot (5.0) files and individual data files. They all share common display characteristics such as background, font, etc. Occasionally, there is a call to change the look of all the charts--for example, change the background color of all charts from "#000000" to "#333333".
To continue with the example, what I would like do is place the color value into a textfile called "backgroundColor.txt" and then pull that value into each file as it's plotted. Even better would be to have background color preference on the first line, font on the second, etc.
Example textfile.txt:
"#000000"
"Arial,10"
Gnuplot psuedo-code:
backgroundColor_var = file[1]
font_var = file[2]
set terminal pngcairo enhanced background backgroundColor_var font font_var size 600,200
Then I need make only one change, rather than many, many changes. Thanks in advance,
Dave