Sample 52556: Increasing the font size of the output from a SAS® Stored Process that is executed in SAS® Visual Analytics
Overview
When you execute a stored process in SAS Visual Analytics, the output might appear smaller than you prefer. This sample explains how to increase the font size by using the FONTSIZE option that is available with PROC REPORT. You can use the sample code as a guide to modifying your own code.
Using the FONTSIZE option
- Create a stored process using the following code.
*Processbody;
%stpbegin;
proc report data=sashelp.class nowd headline
style(header)=[fontsize=10]
style(column)=[ fontsize=10]
style(lines)=[ fontsize=10]
style(summary)=[ fontsize=10 ];
column Name Sex age weight ;
Run;
%stpend;
run;
- Use SAS® Management Console to register the stored process in metadata.
- Log on to SAS Visual Analytics.
- From the home page, click Create Report to create a new report that includes the stored process, or click Open under Common Actions to navigate directly to the stored process that you just created.
Results
Here is an example of how the sample stored process might appear in SAS Visual Analytics.

Additional Documentation
For more information about stored processes, see the SAS Stored Processes: Developer's Guide.
For more information about stored processes in SAS Visual Analytics, see the SAS Visual Analytics documentation page.
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
Date Modified: | 2014-03-26 11:31:13 |
Date Created: | 2014-03-12 16:02:24 |
Operating System and Release Information
SAS System | SAS Visual Analytics | Microsoft® Windows® for x64 | 6.3 | | 9.4 TS1M0 | |
Linux for x64 | 6.3 | | 9.4 TS1M0 | |