Usage Note 23375: In ODS HTML output, can I make the column headers vertical rather than horizontal?
Table headers or variables are horizontal by default.
You might want to make them vertical in order to reduce the table size.
To make the
column headers vertical with the PRINT procedure, use
the HEADING=VERTICAL option.
Or use the below PROC TEMPLATE example code, which works
for any procedure.
proc template;
define style styles.test;
parent=styles.default;
style header from header /
htmlstyle="border:solid windowtext .5pt;padding:1.2pt
1.2pt 1.2pt 1.2pt;
layout-flow:vertical-ideographic;height:8.05pt";
end;
run;
ods html file='temp.html' style=styles.test;
proc print data=sashelp.class;
run;
ods html close;
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: | 2003-09-22 10:52:03 |
| Date Created: | 2003-08-11 11:42:12 |