You are here: Fearntech »

Author : Admin

Bee Smart website

Bee Smart website

fs247 website

fs247 website developed in 2008.

Race results system used for 2008 Canterbury Half-Marathon

Our race results system was successfully used again in theĀ Canterbury Half-Marathon. Our fee was donated to theĀ Canterbury Pilgrims Hospice.

Cascina Arcadia website

Cascina Arcadia website released. Features interactive 360 degree panorama on home page.

Luxury Property Italy website

Luxury Property Italy website released. With slideshow feature on home page, and on individual property pages. Fully database driven.

Using ANNOTATE to add text to a plot in SAS/GRAPH

Using ANNOTATE to add text to a plot in SAS/GRAPH

An example which creates an annotate dataset with a text label to be displayed in a plot, using GPLOT in SAS/GRAPH

* Adds text TEXT HERE at data point 23 on x-axis, 100% *;
* position on y-axis *;

data annot;
length function $8;
x=23;
function='LABEL'; text='TEXT HERE'; color='LIGR';
position='2'; xsys='2'; ysys='1'; y=100; size=1.5;
output;
run;

proc gplot....
plot ... / annotate=annot;
run;
quit;