BookmarkSubscribeRSS Feed
Jack1
Obsidian | Level 7

Hello,

 

I am creating a panel graph in SAS with 3 columns.  The vertical axis is fine.  I want to change the range of the horizontal scale for each of the panels from the SAS default to the following: 

 

first panel: range of 0 to 20

second panel: 60 to 98 

third panel: 0 to 18

 

If possible, how do I insert this into my code:

 

PROC SGPANEL DATA=domestic.graphics;
PANELBY Service /novarname layout=panel columns=3 HEADERATTRS=(Color=red Family='Arial Narrow/Bold' Size=12 Weight=Bold) ;
hbar naics / response= mkt_usage datalabel datalabelfitpolicy=none nooutline ;
colaxis label=' '; 
rowaxis display=(nolabel) colorbands=odd colorbandattrs=(transparency=0.5) labelattrs=(family='Arial Narrow') valueattrs=(size=7pt);
RUN;



Thanks

2 REPLIES 2
collinelliot
Barite | Level 11

I think to have those very specific axis values will require using proc template and sgrender.

 

However, you can use the uniscale=rows and that will allow you to have different scales on the column (x) axis.

Ksharp
Super User

Try another two options.But still can't define the Y axis.

Suggest post it at ODS Graphic forum.

 

 

PROC SGPANEL DATA=domestic.graphics;
PANELBY Service /novarname 
layout=panel columns=3 
HEADERATTRS=(Color=red Family='Arial Narrow/Bold' Size=12 Weight=Bold) 

 proportional uniscale=row/column
 
;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 2 replies
  • 1334 views
  • 0 likes
  • 3 in conversation