Bonjour,
Essaie du côté de la PROC TEMPLATE et d'un style personnalisé :
1 2 3 4 5 6 7 8 9 10 11 12 13
|
proc template;
define style styles.mystyle;
parent=styles.journal;
style body from body / background=white;
style graphbackground from graphbackground/ color=white;
style graphwalls from graphwalls / color=white;
style graphdata1 from graphdata1 / contrastcolor=black color=cxF49E00;
style graphdata2 from graphdata2 / contrastcolor=black color=cx0D3978;
style GraphBar from GraphComponent / displayopts = "fill outline fillpattern";
style GraphColors from GraphColors / 'gdata1'=cxF49E00 'gdata2'=cx0D3978;
end;
run; |
et avant de générer ton graphe :
ods listing gpath="D:\TMP" style=mystyle;
Tu définis ici les couleurs pour les deux premiers graphes. Faire de même avec autant de graphes que tu souhaites.
@+ et bon courage
Partager