BookmarkSubscribeRSS Feed
Informatician
Calcite | Level 5

Help!

I am trying to add a tip label to a chart using sgplot in 9.4 in a similar fashion to gchart's html= option. The issue is that I don't want a tip label or the resulting equal sign to show up in the tip because I have the desired text in a variable called 'myhtml'. Please advise.

 

data _state_data; 
	set _state_data;
        length myhtml $ 250;
        myhtml=trim(left(unique_cases))||" Cases in "||trim(left(state));
run;

title1 justify=center h=1.5 font=swiss "eConsult Cases By State" lspace=0;

ods html;
ods graphics/imagemap=on;

proc sgplot data=_state_data nowall noborder DESCRIPTION="" ;
  styleattrs datacolors=(%rgbhex(140, 185, 202) %rgbhex(19, 85, 137));
  vbar state / response=unique_cases nostatlabel nooutline 
  dataskin=pressed filltype=gradient baselineattrs=(thickness=0) 
  name="plot2"  tip=(myhtml) tiplabel=("");

  keylegend / location=outside position=topright across=2 noborder 
  valueattrs=(size=8 color=black);
  
  xaxis fitpolicy=thin display=all valueattrs=(size=8 color=black) integer 
   minor ;

  yaxis grid display=(noline noticks nolabel noline) valueattrs=(size=6  
  color=black) discreteorder=data;
	
run;
1 REPLY 1
Jay54
Meteorite | Level 14

Unfortunately, there is no way to do that at this time.  Sorry.  Please feel free to file your requirement with Tech Support if you wish.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 820 views
  • 0 likes
  • 2 in conversation