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 a separate window.

According to html documentation, you can specify the following
for 'target=' ...

  TARGET = "_blank" | "_parent" | "_self" | "_top" | window name

In this example, I specified a window name, which I called 'another_window'.

 html=
  'title="Click to see drilldown, in specified html target (another window)"'||
  ' target="another_window"'||
  ' href="target_info.htm"';


Back to Samples Index