|
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
>
|