ran the following code: proc template; define statgraph mypraphs.pie; begingraph; layout region; piechart category=type / start=90 centerfirstslice=1; endlayout; endgraph; end; run; ods graphics / reset imagemap; proc sgrender template=mygraphs.pie data=sashelp.cars; run; ods graphics /reset; proc freq data=sashelp.cars; tables type; run; and getting ERROR: Unable to restore 'mygraphs.pie' from template store! I am nw to SAS. Can anyone help!
... View more