Creating Drill-Down Graphs in HTML |
Tasks in Creating Drill-Down
Graphs |
In the lesson Producing HTML Output, you learned how
to generate HTML output. You can combine the same method with SAS/GRAPH
procedures to create drill-down graphs. You define the links that connect
a chart to its drill-down locations; these links are then assigned in the
HTML when ODS writes the output.
To create a drill-down graph, you write a SAS program to do the following:
|
Data Used in Examples
This lesson builds a detailed example of a program that creates a drill-down graph. It uses the data set Finance.Prdsal2, which contains sales figures for an imaginary furniture company. Sales are tracked by region for every month from 1995 to 1998. |
Description of Finance.Prdsal2
|
The Prdsal2 data set is part of your SAS
installation, but it is not currently stored in the Finance
library. If you would like to run the program developed in this lesson,
create the data set Finance.Prdsal2 by submitting the
following code:
data finance.prdsal2; set sashelp.prdsal2; run; |
Copyright © 2002 SAS Institute Inc.,
Cary, NC, USA. All rights reserved.