|
Chapter Contents |
Previous |
Next |
| The GANTT Procedure |
title f=swiss 'Gantt Example 7';
title2 f=swiss 'Using the MINDATE= and MAXDATE= Options';
goptions vpos=40 hpos=100;
* set up required pattern statements;
pattern1 c=blue v=s; /* duration of a noncrit. activity */
pattern2 c=blue v=e; /* slack time for a noncrit. act. */
pattern3 c=red v=s; /* duration of a critical activity */
* plot the schedule;
proc gantt data=save;
chart / mindate='2jan92'd maxdate='3feb92'd
ref='6jan92'd to '3feb92'd by week
reflabel cref=black lref=2
cframe=cyan
dur=days font=swiss nojobnum
compress;
id task;
run;
Output 4.7.1: Using the MINDATE= and MAXDATE= Options in Graphics Mode
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.