Usage Note 23390: How can I specify text to display in a table cell as a flyover tool tip in ODS HTML?
To display a tool tip, use the FLYOVER= attribute inside the appropriate style element. To selectively add a flyover to a cell, use the CELLSTYLE statement with the FLYOVER= attribute for procedures that have table templates. For procedures that do not have table templates, use PROC REPORT with the DEFINE statement.
proc template;
define style styles.background;
parent=styles.default;
style Data from Data /
flyover='this is a tool tip';
end;
run;
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2004-07-15 12:12:27 |
| Date Created: | 2003-08-13 09:15:21 |