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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 942 views
  • 0 likes
  • 2 in conversation