Date: Tue, 5 Jun 2001 20:16:19 GMT
Reply-To: Luka <luka.schrijvers@PANDORA.BE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Luka <luka.schrijvers@PANDORA.BE>
Organization: Telenet Internet
Subject: Re: How to link to definitions on another document from the ODS
output of Proc Gchart
Try this newsgroup "http://groups.yahoo.com/group/appdevstudio"
Regards
Ronny
Adele Hall <lehall@ACCD.EDU> schreef in berichtnieuws
008d01c0ead5$67116220$2e04000a@accd.edu...
> I hope you can give me some help on this issue. I have created vertical
bar
> charts through the use of Proc Gchart and ODS. The parameter will be
passed
> from the user input on the HTML page to "&rpt".
> The values of the parameter will be "Dual_Credit_Student" and
"Paid_Student"
> etc. When the vertical bar chart is generated, it will be great that if
> the user can click on any data item referenced on the chart and the
program
> would bring up the definition from the on-line dictionary. This will be
> very helpful to the user. I wonder if you can give me some guidance as to
> how to achieve this goal. Any advice will be greatly appreciated. I
thank
> you for your time in advance.
>
> The sample codes are as follows:
>
> ods html body=_webout (dynamic)
> path=&_tmpcat (url=&_replay)
> rs=none;
>
> proc gchart data=SUMMARY;
> vbar3d year / sumvar=&rpt
> shape=cylinder
> patternid=midpoint
> outside=sum;
> TITLE1 justify=center "District";
> run;
>
> I look forward to hearing from you.
>
> Thanks,
>
> Adele Hall
|