BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
t75wez1
Quartz | Level 8

Hello,

 

I've been using "Proc gplot" a lot to create SAS graphs. I can decide the font, size  and color of X or Y lables and values by using statement below.

 

"axis2 label=(h=1 ' ') order=('15Jan2010'd to '15Dec2015'd by month) major=(color=black height=1.5pt) minor=none value=(height=1.5 color=gray) offset=(1,1);"

 

But how to do the same things in "proc sgplot"?

 

I'm really appreciative of any helps!

 

Ethan

 

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

The axis statements for SGPLOT are inside of the procedure. For example, assuming your axis statement in your post would translate to something like the following for the X axis:

 

 

proc sgplot data=whatever;
xaxis display=(nolabel) values=('15Jan2010'd to '15Dec2015'd by month)
  valueattrs=(color=gray size=12pt) offsetmin=0.1 offsetmax=0.1;

...more statements...

run;

 

In SGPLOT, there are up to four axis statements: XAXIS, YAXIS, X2AXIS, and Y2AXIS. Plots can be assigned to different axes.

 

On the axis statements: LABELATTRS=(color= family= size= weight= style=)

VALUEATTRS (for the tick values) has the same options.

 

 

Hope this helps!

Dan

View solution in original post

5 REPLIES 5
DanH_sas
SAS Super FREQ

The axis statements for SGPLOT are inside of the procedure. For example, assuming your axis statement in your post would translate to something like the following for the X axis:

 

 

proc sgplot data=whatever;
xaxis display=(nolabel) values=('15Jan2010'd to '15Dec2015'd by month)
  valueattrs=(color=gray size=12pt) offsetmin=0.1 offsetmax=0.1;

...more statements...

run;

 

In SGPLOT, there are up to four axis statements: XAXIS, YAXIS, X2AXIS, and Y2AXIS. Plots can be assigned to different axes.

 

On the axis statements: LABELATTRS=(color= family= size= weight= style=)

VALUEATTRS (for the tick values) has the same options.

 

 

Hope this helps!

Dan

t75wez1
Quartz | Level 8

Thanks Dan.

But I still don't know how to change the font, size and color for label.

 

DanH_sas
SAS Super FREQ

On the axis statements: LABELATTRS=(color= family= size= weight= style=)

VALUEATTRS (for the tick values) has the same options.

ballardw
Super User

Which version of SAS are you using? Options have changed significantly with each release related to the statistical graphs (SGPlot SGPanel SGrender).

t75wez1
Quartz | Level 8

I have 9.3 1M2 and 9.4 1M3 loaded on two desktops.

 

SAS INNOVATE 2024

innovate-wordmarks-white-horiz.png

SAS is headed back to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team.

Interested in speaking? Content from our attendees is one of the reasons that makes SAS Innovate such a special event!

Submit your idea!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 5 replies
  • 28660 views
  • 1 like
  • 3 in conversation