Graphics Programming

Data visualization using SAS programming, including ODS Graphics and SAS/GRAPH. Charts, plots, maps, and more!
BookmarkSubscribeRSS Feed
mathias
Quartz | Level 8

Hi,

I created a template style to make all generated graphics uniform.

It is writen in my code like this :

"

ODS PATH(PREPEND) work.templat(update);

proc template;

     define style wivisp_SASstyle;

     parent = Styles.Normal;

     style GraphColors /

          'gborderlines' = white

          'goutlines' = black

     ...

end;

"

then in EG I added the template in Tools > Style manager > add

In sas enterprise guide, I can see it works : graphs are in the right colors

But when I create a stored process from my egp (right clic > "Create stored process" > next next finish), all colors are changed.

How do I apply my custom template to the results of my stored process ?

Is writing a proc template a good waprocessy to do procede ?

Many thanks

I use Enterprise guide 4.3 and SAS 9.2

3 REPLIES 3
mathias
Quartz | Level 8

adding this line seems to apply the style on tables but no graphics are shown

ods html file=_WEBOUT ENCODING='utf-8' STYLE=wivisp_SASstyle;

mathias
Quartz | Level 8

ods html style=wivisp_SASstyle;

/* no file statement for stored process !!! */

seem to apply my style to graphics of the stored process.

not to background of the page, titles and tables...

DanH_sas
SAS Super FREQ

The style has to be specified on the _ODSSTYLE macro variable to affect all of your output. the macro variable is used by the %stpbegin() macro when initializing the ODS destination. Therefore, try this:

%let _ODSSTYLE=wivisp_SASstyle;

%stpbegin();

Let me know if this works for you.

Thanks!

Dan

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1059 views
  • 0 likes
  • 2 in conversation