LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (January 2010, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 8 Jan 2010 06:26:36 -0600
Reply-To:   "Data _null_;" <iebupdte@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Data _null_;" <iebupdte@GMAIL.COM>
Subject:   Re: how to create graph with legend without axises
Comments:   To: Shaik Hymad <hymadsk@gmail.com>
In-Reply-To:   <201001081023.o07LO5Ja030443@malibu.cc.uga.edu>
Content-Type:   text/plain; charset=ISO-8859-1

Here is a nice useful example that uses the technique... http://support.sas.com/kb/24/945.html

And specifically what you ask about.

axis1 order=(-10 to -1); proc gplot data=sashelp.class; plot weight * height = name / noaxis noframe haxis=axis1 vaxis=axis2; run; quit;

The trick is to get rid of the points by manipulating the axis range.

On 1/8/10, Shaik Hymad <hymadsk@gmail.com> wrote: > Hi To all, > I want to create in graph only legend.no need to create any axis > > can you please help me this? > > Thanks, > Hymad Sk >


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