Hello,
It seems a very easy question but somehow I am struggling with this.
I just want to change the FONT (not font size, this I can do easily) of all text in a plot (in SGPLOT): axis labels and values, legend items...
I guess I have to define a new style, something like:
proc template;
define style my_style;
parent=styles.htmlblue;
class GraphValueText / font = ("<sans-serif>, <MTsans-serif>",20pt);
end;
How can I set the font to Times New Roman, or Arial, etc, instead of sans-serif?
Where can I find a list of available fonts?
And how do I apply the new style to the plot?
Could someone give an example (as easy as possible)?
... View more