BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
PaigeMiller
Diamond | Level 26

SAS 9.4 TS1M4

 

Code:

 

ods html;
ods graphics/imagemap=on;
proc sgplot data=sashelp.cars;
    bubble x=origin y=invoice size=msrp/tip=(horsepower enginesize);
run;
ods html close;

When I hover my mouse over one of the bubbles as seen in the SAS Results Viewer, the tool tip appears as expected. When I hover my mouse over one of the bubbles when I use Internet Explorer 11 to open the .html file that is created, no tool tips appear. When I hover my mouse over one of the bubbles when I use Google Chrome 64, the tool tips appear. Also, the appearance of the plots is different in IE 11. How do I make the tool tips appear in IE 11?

--
Paige Miller
1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

Ok, problem solved.

 

The plots were enlarged in IE for some reason (View->Zoom was set to 125%). WHen I changed the zoom to 100%, the tool tips work properly.

--
Paige Miller

View solution in original post

4 REPLIES 4
ballardw
Super User

When I use this:

ods html  path="d:\" body="test.html" (url=none);
ods graphics/imagemap=on;
proc sgplot data=sashelp.cars;
    bubble x=origin y=invoice size=msrp/tip=(horsepower enginesize);
run;
ods html close;

and open the result with IE11 then I can see the tool tips.

 

I did not notice any appearance difference except a possibly size difference of maybe 5% larger in a separate IE11 window than the results viewer.

DanH_sas
SAS Super FREQ

Hey Paige,

 

Notice @ballardw is writing his HTML file outside of the temp area. Try that as well, and see if that works better for you.

 

Thanks!
Dan

PaigeMiller
Diamond | Level 26

Sending output to my C: drive, or sending output to a network share, makes no difference, IE does not display the tool tips.

--
Paige Miller
PaigeMiller
Diamond | Level 26

Ok, problem solved.

 

The plots were enlarged in IE for some reason (View->Zoom was set to 125%). WHen I changed the zoom to 100%, the tool tips work properly.

--
Paige Miller

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 3146 views
  • 0 likes
  • 3 in conversation