so i am ploting a surface using the activex device:
GOPTIONS DEVICE=ACTIVEX xpixels=650 ypixels=650 border;
ODS LISTING CLOSE; ODS HTML parameters=('tips'='false');
proc g3d data=xxx;
plot y*x=z / grid contour=1 style=3 zmin=0 zmax=1 xaxis=axis1 yaxis=axis2;
run; quit;
ODS HTML CLOSE; ODS LISTING;
axis1 order=(0 to 16 by 1);
axis2 order=(0 to 24 by 1);
now y has a range of 0 to 24 by 1 and x has a range of 0 to 16 by 1 (as seen in the axis statements). however i get this warning;
WARNING: Order value specified in the AXIS statement does not match a midpoint value.
WARNING: Order value specified in the AXIS statement does not match a midpoint value.
when i run it with the default destinations it dont get the warning messages:
goptions reset=goptions;
proc g3d data=xxx;
plot y*x=z / grid zmin=0 zmax=1 xaxis=axis1 yaxis=axis2;
run;
im thinking it has something to do with the html destination??? any ideas?