Hi All, I would like to know if it's possible to display a popup window while hovering the graph with the mouse on a reference line on a Gplot (it is essential that I continue with a Gplot). Here's my code and my graph: proc sql noprint; select catx('','"',Name,'"') as ListName into :NameRefline separated by " " from sashelp.class where Height GT 65; quit; %put &NameRefline; goptions xpixels=1200 ypixels=675; proc gplot data=SASHELP.CLASS; plot Name*Height=Sex / vref=&NameRefline cvref=orange; run; The idea here is to show the Weight of the people with the refline in a popup. I don't want to put it on the graph because the graph will be difficult to read. I hope I'm clear enough. Thanks!
... View more