BookmarkSubscribeRSS Feed
suraestar
Calcite | Level 5

Hi there,

I want to insert multiple graph file into a single HTML file.

I am using GTL(proc template and SGRENDER procedure) to generate graphs.

How can I do this with PROC GREPLAY or Is there any other way?

Thanks in Advance.

Surendar.

3 REPLIES 3
Quentin
Super User

Hi,

You don't need GREPLAY, that is for traditional SAS/GRAPH, not ODS  Graphics.

Are you coding the "ODS sandwich yourself" ?  Then would think this would work by without doing anything special, i.e.:

ods html file=  ... ;

proc sgrender ...;

proc sgrender ....

*etc;

ods html close;

With ods html the image(s) aren't actually in the html file, but the html file references the image(s).  If you have SAS 9.4 you can use ods HTML5, and actually embed the images in the html:

SAS 9.4 has a new way to send interactive graphs in email

suraestar
Calcite | Level 5

Hi,

Thanks, but I have only 9.3 version of SAS. So how could I do?

Quentin
Super User

Is ssomething like this what you are trying to do?

THe images aren't actually in the file, but it's one html file and when you view it you will see both images.

ods html file="d:\junk\mygraphs.html" gpath="d:\junk";

proc sgplot data=sashelp.class;
  hbox age/group=sex;
run;


proc sgplot data=sashelp.class;
  hbox height/group=sex;
run;

ods html close;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1380 views
  • 0 likes
  • 2 in conversation