Generate the KPI chart. Specify the segment boundaries, actual KPI value, and target value. The LFONT= option specifies the font for the label. The FORMAT= option specifies the SAS format for the values in the chart.


proc gkpi mode=raised;
   speedometer actual=.72 bounds=(0 .40 .60 1) /   target=.85
   lfont=(f="Albany AMT" height=.5cm) label="Average Capacity"
   format="percent8.0";
run;