goptions reset=all device=javaimg; ods html; proc gkpi mode=raised; hslider actual=0.28 bounds=(0 .22 .35 .50) / colors=(PaleTurquoise MediumTurquoise Teal); run; quit; ods html close;
goptions reset=all device=javaimg; ods html; proc gkpi mode=raised; hslider actual=0.28 bounds=(0 .22 .35 .50) / colors=(cxB2B2B2 cxB2B2B2 cxB2B2B2) activecolors=(cxD06959 cxF1DC63 cx84AF5B); run; quit; ods html close;The actual KPI value is 0.28, which falls into the second range, so the second color listed in the ACTIVECOLORS= color list, cxF1DC63, which is yellow, is used as the color for the second range instead of gray.
null
for the color or enter
a comma-delimited list with no space between the commas. For example,
if you have five ranges and you want red to be used only for the lowest
and highest ranges, then you can specify the ACTIVECOLORS= list in
either of the following forms: activecolors=(red,null,null,null,red) activecolors=(red,,,,red)The default colors (or the color in the COLORS= list) are used for ranges two through four even if the actual KPI value falls into one of these ranges.
activecolors=(red green)The GKPI procedure treats this specification as if you had entered the following:
activecolors=(red,green,null,null,null)Red applies only to the first range, and green applies only to the second range. Default colors (or COLORS= colors) apply to all the other ranges.
RGBA1
|
|
1RGBA color mode is not supported by Java devices. RGBA color mode is supported by ActiveX devices when the output is used in Microsoft applications. |