| Date | Title | Type | ||
|---|---|---|---|---|
| 7/15/04 |
23485 - In ODS HTML, how can I add an image to my title or footnote? Use the HTML tags to do this. The below example adds an image to the title1. ods html file="temp.html"; proc print data=sashelp.class; title "<img src=""C:\temp.gif""></img>"; run; ods html ... http://support.sas.com/kb/23/485.html, 17KB |
Usage Note | ||
| 11/9/07 |
23692 - In ODS HTML, how can I make the graphics file created with SAS/GRAPH a clickable hyperlink? To make the graphics file created with SAS/GRAPH a clickable link, use the PRETEXT= and POSTTEXT= attributes. The PREXTEXT= attribute specifies the HTML tags to build the hyperlink to the image, and the POSTEXT= ... http://support.sas.com/kb/23/692.html, 17KB |
Usage Note | ||
| 8/27/05 |
25567 - Creating a simple web page with ODS This example illustrates the simplest way to use the ODS HTML statement to create an HTML file and a GIF file that you can display in a Web browser. http://support.sas.com/kb/25/567.html, 20KB |
Sample | ||
| 10/20/03 |
23419 - In ODS HTML output, how can I precede an item with a logo or GIF file in the table of contents? Use cascading style sheets. In the class .Contentitem, add the property LIST-STYLE-IMAGE. Although this cannot be done alone with PROC TEMPLATE, it can be done with the use of a CSS. Create a CSS with the ... http://support.sas.com/kb/23/419.html, 17KB |
Usage Note | ||
| 9/22/03 |
23387 - In ODS HTML output, how can I make my titles and tables transparent to the background image? To make the titles transparent to the background image, use the below example code. (See also FAQ 3291, "How can I add a background image to ODS HTML output?")* Syntax for making titles transparent to the background ... http://support.sas.com/kb/23/387.html, 18KB |
Usage Note | ||
| 8/28/07 |
24303 - Why does opening the ODS PRINTER destination change the appearance of the graphs in my ODS HTML output? When a SAS/GRAPH procedure is invoked, it defines the layout of the graph under the current settings and sends the image to each of the output destinations. Because a graph has only one layout regardless of the number ... http://support.sas.com/kb/24/303.html, 19KB |
Usage Note | ||
| 7/13/06 |
25262 - Pie charts with drill down functionality This sample uses the Java device driver to create an interactive pie chart with HTML drill down capability. http://support.sas.com/kb/25/262.html, 22KB |
Sample | ||
| 8/27/05 |
25556 - Creating maps with drill-down for the web using PROC GMAP This example shows how to create a 2D choropleth map with simple drill-down functionality for the Web. When this map is displayed in a browser, you can select an area of the map and display additional information about ... http://support.sas.com/kb/25/556.html, 22KB |
Sample | ||
| 8/24/05 |
25514 - Creating drill-down bar charts for the web using PROC GCHART This example shows how to create 3D bar charts with drill-down functionality for the Web. In addition to showing how to use the ODS HTML statement and the HTML options to create the drill-down, the example also ... http://support.sas.com/kb/25/514.html, 27KB |
Sample | ||
| 5/13/04 |
23691 - How can I make a logo or image a clickable hyperlink in ODS HTML? To make an image a clickable hyperlink, you can add the hyperlink tags around the image tags. This enables you to click on the image to drill down or go to another page. If you do not want the blue border around the ... http://support.sas.com/kb/23/691.html, 17KB |
Usage Note | ||