| Date: | Fri, 29 Jun 2001 09:40:31 -0500 |
| Reply-To: | Adele Hall <lehall@ACCD.EDU> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Adele Hall <lehall@ACCD.EDU> |
| Subject: | My HTML links in SAS graph only works in Internet Explorer,
not Netscape. How to fix it? |
| Content-Type: | text/plain; charset="iso-8859-1" |
After creating HTML links for the labels of the horizontal axis and vertical
axis in my SAS bar charts. I find out that these HTML links only work with
Microsoft Internet Explorer. They don't work with Netscape browser. When I
use Netscape browser, clicking on the HTML link only brings the user to the
linked document, but not to the targeted word in the document. I wonder if
you can give me some guidance. Your advice will be greatly appreciated. My
codes are as follows:
data annodat7;
length html $ 75;
xsys = '3';
ysys = '3';
function = 'LABEL ';
x = 14;
y = 83;
color = 'BLACK ';
cbox = 'WHITE ';
size = 1.0;
text = '% of Total Grades';
html='HREF="/sasweb/crsdefine.htm#total_grades"';
output;
run;
PROC GCHART DATA=GRADES;
VBAR3D SCHOOL_YR / SUMVAR=PERCENT
PATTERNID=midpoint
LEGEND=LEGEND1
shape=cylinder
maxis=axis1
raxis=axis2
anno=annodat7
outside=sum;
axis1 label=none;
axis2 label=none;
WHERE COLLEGE = "&COLLEGE";
footnote h=2 ' ';
run;
I look forward to hearing from you soon!
Thanks a lot!
Adele
|