Previous Page | Next Page

The GKPI Procedure

Example 3: Creating a Dial KPI Chart


Procedure features:

PROC GKPI statement option: MODE=RAISED

DIAL statement options:

ACTUAL=

AFONT=

BFONT=

BOUNDS=

FORMAT=

NOLOWBOUND

TARGET=

Sample Library Member: GKPDIAL

[radial dial kpi chart]

 Note about code
goptions reset=all device=javaimg xpixels=240 ypixels=200;
 Note about code
ods listing close;
ods html style=listing;
 Note about code
proc gkpi mode=raised;
dial actual=.46 bounds=(0 .23 .46 .65 .79 1) /
   target=.9  nolowbound  format="percent8.0"
   afont=(f="Albany AMT" height=.5cm)
   bfont=(f="Albany AMT" height=.4cm) ;
run;
 Note about code
quit;
ods html close;

Previous Page | Next Page | Top of Page