Generate the target output.PROC GSLIDE is run four times to generate the four graphs that will serve as target output for the links that are defined in the drill-down graph.
/* generate the target output */ proc gslide wframe=4 cframe=green name="green"; note height=20; note height=10 justify=center color=green "Green Grass"; run; proc gslide wframe=4 cframe=blue name="blue"; note height=20; note height=10 justify=center color=blue "Blue Sky"; run; proc gslide wframe=4 cframe=red name="red"; note height=20; note height=10 justify=center color=red "Red Wine"; run; proc gslide wframe=4 cframe=gray name="gray"; note height=20; note height=10 justify=center color=gray "Gray Mare"; run; quit; goptions goutmode=append; run;