Hi I am trying to generate a hbar plot using sgpanel where I need to shade the region of the plot based on the response var values (MPG_Highway in below example). But till now I couldn't find any way to that so can any one suggest a solution for this. Here is the example: PROC SGPANEL DATA=sashelp.cars; where type in("SUV","Sedan","Wagon"); PANELBY type / COLUMNS=3 NOVARNAME ; HBAR EngineSize / RESPONSE=MPG_Highway GROUP=Cylinders; COLAXIS values=(1 to 30 by 1) ; ROWAXIS values=(1 to 30 by 1); TITLE1 "cars"; run; quit; I want to shade with color light gray if the MPG_highway is greater than 13 if not gt 13 than shade in light yellow. Thank you,
... View more