Try making a copy of the data instead of using it directly from the SPACE library:
ods graphics / reset width=6.4in height=4.8in imagemap;
data work.data_rain;
set space.data_rain;
run;
proc sgplot data=work.data_rain;
histogram probability /;
yaxis grid;
run; quit;
ods graphics / reset;
Vince DelGobbo
SAS R&D
... View more