Hello SAS Forum.
Is there any way ,I could set a background color for the bars while using the proc sgpanel.
Here is the sample code for panels(with bars).I want to set a background for bars.
/***************************************************************************************
title1 "Average MPG (City) by Vehicle Origin and Type";
proc sgpanel data = sashelp.cars ;
panelby origin / layout=columnlattice onepanel novarname
noborder colheaderpos=top;
hbar type / response=mpg_city group=type ;
colaxis display=none ;
rowaxis label="Average MPG (City)" ;
keylegend / title="Type" position=right across=1 ;
run;
************************************************************************************/
Any idea on this??
Please let me know..
Appreciate your help.
Thanks
Siri