Usage Note 23319: How can I change the color of HTML cells in ODS output?
You can change the background color of the data values (cell color)
by modifying the argument associated with
the string "bgA3" in the color_list. The alternative way is to make the changes in the style element that renders the data, which is the style element DATA. Because we have the FROM in the STYLE statement, it uses the attributes that we specify in the style element Data and inherits the rest from the style element Cell.
View output.
proc template;
define style style.colors;
parent=styles.default;
style Body from Document /
background=black;
style Data from Cell /
/* Change background to dark red/orange */
background=cx8e2323;
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: | 2003-09-22 11:27:31 |
| Date Created: | 2003-08-06 15:45:00 |