Click here to see the SAS code.
Click here to see the example.
---------------------------------------------------------------
Similar to the 'area' example, this example also uses an annotated
bar/box around the entire graph area for the drilldown.
But in this example, in addition to specifying the html href=
drilldown, and title= charttip, I also specify the html target=
to tell it to bring up the drilldown in the same window.
According to html documentation, you can specify the following
for 'target=' ...
TARGET = "_blank" | "_parent" | "_self" | "_top" | window name
In this example, I specified "_self".
html=
'title="Click to see drilldown, in specified html target=_self (same window)"'||
' target="_self"'||
' href="self_info.htm"';
Back to Samples Index