|
COPY statement |
|
MODIFY statement |
Pie Chart Created with Default WIN Device Entry
This example shows how to use GDEVICE
procedure statements
to modify a device entry by copying the original entry into a personal catalog
and changing the device parameters.
This example permanently changes the default color list
for the WIN device entry.
|
libname gdevice0 "SAS-data-library"; |
|
proc gdevice nofs catalog=gdevice0.devices; |
|
copy win from=sashelp.devices newname=mypscol; |
|
modify mypscol
description="WIN with new color list"
colors=(black cx95c051 cxA359B2 cxD65259 cx69D6D2 cxFFB74F cx929cff); |
|
quit; |
|
goptions target=mypscol;
proc gchart data=sashelp.class;
pie age/discrete noheading;
run;
quit; |
Pie Chart Created with Customized WIN Device Entry
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.