Click here to see the SAS code.
---------------------------------------------------------------
The drilldown in this example is done in the traditional SAS/Graph way ...
First, a character variable is created, containing the html tags for
the drilldown (href=) and the text charttip/rollover-text (title=)
as follows ...
length htmlvar $500;
htmlvar='title='||quote(
'State: '|| trim(left(st)) ||'0D'x||
'Population: '|| trim(left(put(population,comma12.0)))
)
||' '||
'href="http://www.state.'||trim(left(lowcase(st)))||'.us"';
Then that variable is specified using the "html=" option in the
SAS/Graph "proc gchart" as follows...
proc gchart data=mydata;
pie st / discrete
type=sum sumvar=population
noheading
ascending
coutline=black
woutline=2
html=htmlvar <-------- here!
des="" name="&name" ;
run;
And the output is created using ODS HTML, and "goptions device=gif",
so that a gif file is created containing the gif, and an html file
is created containing the html charttips & drilldowns. The user will
view the html file, and it will display the gif image.
Back to Samples Index