a simple question...
I haven't yet found a way to change e.g. the default textcolor (or other
properties) of labels (or other objects).
For example, the standard textcolor is black, so if you type:
set label 1 "Text1" tc rgb "red"
set label 2 "Text2"
...
set label n "TextN"
Text2 to "TextN" will be in black. OK, fine, it seems if you want n
labels in red you have to specify each time the color for each label.
I was hoping that there is something like:
set textcolor rgb "red" # from now on all labels are in red
or
set style label tc rgb "red"
set label 1 "Text1"
set label 2 "Text2"
...
set label n "TextN"
Which would make it easier to change the color at once of all following
labels or objects by simply change a single line of code.
Is there another simple way to do that?
|