getting closer! appologies for my novice understanding of SAS Graph. see code below. I did turn off the output options in EG, then it asks me to download the results "s:\Projects\Development\Randy\GraphOutput\graph1.html" which I do and the url links work there (in EG land). however, when I go do the directory where this is stored and open the file, the links do not work. There is also in that directory the imagemap "Spark Table SG URL". I'm not sure how these are connected such that I can put them in a Portlet on the Portal (and what kind of Portlet) so they work together to render the Sparkline graph iwth operable URL links? thanks for all the help with this, this is a critical point for this project, and many future ones. %let gpath='S:\Projects\Development\Randy\GraphOutput'; ods listing gpath=&gpath image_dpi=100 ; ods html path="S:\Projects\Development\Randy\GraphOutput" body="graph1.html"; ods graphics / reset width=7.0in height=4.0in antialiasmax=1000 imagename='Spark_Table_SG_URL' imagemap tipmax=1000; title 'Quality ScoreCard Sparkline Graph'; proc sgplot data=Tmp3 noautolegend; refline ref / lineattrs=(thickness=27) transparency=0.75; series x=x y=y / group=group lineattrs=graphdatadefault(pattern=solid); scatter y=group2 x=yRatelabel /markerchar=Rate x2axis url=url; scatter y=group2 x=yBaseLabel /markerchar=Base x2axis url=url; scatter y=group2 x=yTargetLabel /markerchar=Target x2axis url=url; scatter y=group2 x=yStretchLabel /markerchar=Stretch x2axis url=url; xaxis display=none offsetmax=0.20 type=discrete; x2axis display=(nolabel noticks) offsetmin=0.7; yaxis values=(1 to 4) display=(nolabel noticks); * type=discrete; run; ods html close;
... View more