LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (February 2008, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 20 Feb 2008 07:43:23 -0500
Reply-To:     Nathaniel.Wooding@DOM.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Nat Wooding <Nathaniel.Wooding@DOM.COM>
Subject:      Re: Sparklines  was Re: sas graph
Comments: To: "Huang, Ya" <Ya.Huang@amylin.com>
In-Reply-To:  <B84879D70E8C1C418A6C8DA90F733134E30CF8@A-EXCH-VS1.amylin.com>
Content-type: text/plain; charset=US-ASCII

Ya

Good point.

Nat

Nat Wooding Environmental Specialist III Dominion, Environmental Biology 4111 Castlewood Rd Richmond, VA 23234 Phone:804-271-5313, Fax: 804-271-2977

"Huang, Ya" <Ya.Huang@amylin. com> To <Nathaniel.Wooding@dom.com> 02/19/2008 04:19 cc PM <SAS-L@LISTSERV.UGA.EDU> Subject RE: Sparklines was Re: sas graph

The advantage of using color=white to make the axis 'disappear' is that you still have the control to the scale of axis (order= option):

goptions reset=all; axis1 color=white order=(0 to 1000 by 200); axis2 color=white;

proc gplot data=sashelp.class; plot weight*height / vaxis=axis1 haxis=axis2; run;

If you use noaxis option in plot statement, you can only get the scale calculated by SAS.

-----Original Message----- From: Nathaniel.Wooding@dom.com [mailto:Nathaniel.Wooding@dom.com] Sent: Tuesday, February 19, 2008 1:15 PM To: Huang, Ya Cc: SAS-L@LISTSERV.UGA.EDU Subject: Sparklines was Re: sas graph

I would recommend

goptions reset=all;

proc gplot data=sashelp.class; plot weight*height / noaxes; run;

I am about to leave for the day and do not have time to search the web but as I recall, someone gave a paper on producing sparklines at NESUG last fall.

Nat Wooding Environmental Specialist III Dominion, Environmental Biology 4111 Castlewood Rd Richmond, VA 23234 Phone:804-271-5313, Fax: 804-271-2977

Ya Huang

<ya.huang@AMYLIN.

COM> To Sent by: "SAS(r) SAS-L@LISTSERV.UGA.EDU

Discussion" cc <SAS-L@LISTSERV.U

GA.EDU> Subject Re: sas graph

02/19/2008 04:00

PM

Please respond to

Ya Huang

<ya.huang@AMYLIN.

COM>

You can set the axis color to white:

goptions reset=all; axis1 color=white; axis2 color=white;

proc gplot data=sashelp.class; plot weight*height / vaxis=axis1 haxis=axis2; run;

On Tue, 19 Feb 2008 12:49:25 -0800, ramurondla@GMAIL.COM wrote:

>Hi All, > >I am trying to create spark charts using gchart gplot and greplay. > >Is there anyway to hide X and Y axis from the graph? > >Thanks, >Ram

----------------------------------------- CONFIDENTIALITY NOTICE: This electronic message contains information which may be legally confidential and/or privileged and does not in any case represent a firm ENERGY COMMODITY bid or offer relating thereto which binds the sender without an additional express written confirmation to that effect. The information is intended solely for the individual or entity named above and access by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution, or use of the contents of this information is prohibited and may be unlawful. If you have received this electronic transmission in error, please reply immediately to the sender that you have received the message in error, and delete it. Thank you.


Back to: Top of message | Previous page | Main SAS-L page