BookmarkSubscribeRSS Feed
frisco
Calcite | Level 5
Some of our end users are reluctant to upgrade their version 8 graph programs because the same code run in version 9 produces a different font size. Does anyone have an FAQ of issues relating to this and their suggested solution? TIA.
5 REPLIES 5
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Suggest you share some specific SAS code for feedback.

Also, this is a typical SAS version conversion challenge, some say that it's the cost of "progress" and "innovation" -- others may not totally agree. If you have a specific concern, it may be best served by contacting SAS support.

Scott Barry
SBBWorks, Inc.

http://en.wikipedia.org/wiki/Regression_testing - an inclusive vocabulary term/phrase.
Cynthia_sas
SAS Super FREQ
Hi:
This documentation has the steps you need to follow to make SAS 9.2 SAS/Graph output look the same as earlier versions.
http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/a003229310b.htm

If you have continuing issues, after using these settings, your best resource for help is to work with Tech Support.

cynthia
ChrisNZ
Tourmaline | Level 20
Unfortunately, it is not only 9.2. It is a pain that versions, devices and destinations alter graphs so much, and I struggle to find a justification.

Why these 2 should yield a different result is beyond me:

goption dev=gif;
proc gchart data=sashelp.class; vbar age;run;quit;
goption dev=png;
proc gchart data=sashelp.class; vbar age;run;quit;

It would be great if a new set of drivers looking the same across all destinations was designed. Even just one driver actually, say PNGIMG, looking roughly like say ACTXIMG.

This way a 10pt font would have a consistent size, unlike:

ods html;
goption dev=gif ftext='arial' htext=10pt;
proc gchart data=sashelp.class; vbar age;run;quit;
goption dev=png;
proc gchart data=sashelp.class; vbar age;run;quit;
goption dev=actximg;
proc gchart data=sashelp.class; vbar age;run;quit;
ods html close; Message was edited by: Chris@NewZealand
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
This type of version difference has existed non-stop since SAS v6. Unfortunately, the idea of software stability and consistency (upward compatibility) is akin to Microsoft and their persistent attitude with Alt-key behavior changes with various products.


Scott Barry
SBBWorks, Inc.
ChrisNZ
Tourmaline | Level 20
The consistency issue looks like an oversight to me.
Another one is some graph tooltips (like GIF ones I think) require '0A'x as EOL character, and some (like activex) require both '0A'x and '0D'x (but if you use both with GIF, you end up with squares being displayed).

So if you want to make 2 set of outputs, one dynamic, one not, a whole bunch of details must be changed for no good reason. The tooltip EOL quagmire might or not be sas' making, the result is the same though.

Devil, details, etc.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1109 views
  • 0 likes
  • 4 in conversation