Export SAS Report Packages
The SAS Visual Analytics SDK can be used in two fundamentally different ways. In the most basic setup you are connecting directly to a SAS Viya deployment, delivering reports and data to your web page. But it can also be used to display report content that has been exported from SAS Visual Analytics and hosted on your own web server. Exporting a report package enables you to use the SAS Visual Analytics SDK while completely disconnected from SAS Viya. The benefit is that your webpage traffic can scale independently from your SAS Viya deployment. This also enables you to skip any SAS Viya configuration setup necessary for enabling cross-site access from the SAS Visual Analytics SDK.
How do I export a SAS Report Package?
There are two methods for exporting entire reports or subsets of reports (which enable you to embed individual objects or pages) as a SAS report package. The first method is to use the export feature in SAS Visual Analytics. which enables you to export a report package as a ZIP file. For more information, see Exporting SAS Report Packages. This method works well for one-time use and for learning about the supported export features. However, if your data changes regularly, then you might want to use the second method of automating the creation of the report package. You can do this using the reports plug-in to the SAS Viya CLI. For more information, see CLI Examples: Reports.
What do I do with the SAS Report Package?
The exported report package includes a sample HTML page (index.html
) that demonstrates the mechanics of how to use the SAS Visul Analytics SDK to render the report content. In order to see the sample page, deploy all of the report package contents to a web server. Then, navigate a web browser to the URL of the index.html
file.
When you create a new web page or embed report content into an existing web page, it is common to co-locate the report package content with other assets for the web page. You might want to have a reportAsests
folder that is deployed along with your HTML file. However, it is possible to put the report package content anywhere that is accessible through a URL.
Once you extract the report package contents and you know where they are deployed, you can reference the content using the packageUri
property on SASReportElement
, SASReportPageElement
, or SASReportObjectElement
. packageUri
should point to the base location of the package contents, either with an absolute or relative URL.
<sas-report-object
packageUri="./reportAssets"
objectName="ve27"
></sas-report-object>
As noted in the packageUri
API documentation, this property takes the place of url
, reportUri
, and authenticationType
that are used when connecting directly to SAS Viya.
Why do my report fonts look different from SAS Visual Analytics?
When you use the SAS Visual Analytics SDK to connect directly to SAS Viya, the fonts are loaded from that SAS Viya deployment. This allows the report content to render using the same font that was specified when the report was designed in SAS Visual Analytics. For licensing reasons, SAS cannot redistribute these fonts when a report package is exported. When you use a report package, extra steps are required to ensure that the report content uses the fonts that you intended. These steps are outlined below.
Define the font face in CSS
Use the @font-face in your CSS to define the font (or fonts) that are used by the report content. This means you must know the font-family
name and have access to the font files.
<style>
@font-face {
font-family: 'MyFont';
src: url('/fonts/MyFont.woff2') format('woff2'),
url('/fonts/MyFont.woff') format('woff');
}
</style>
It might be necessary for you to use a font that is not a standard font available in SAS Visual Analytics. To do this, you must first load the font onto SAS Viya by utilizing the SAS Viya CLI fonts plug-in, as shown in Fonts: CLI Examples. You can then create the report content using that font.
Are all features and APIs supported?
As mentioned above, url
, reportUri
, and authenticationType
are ignored when you set packageUri
. The following APIs and features are not supported for report packages:
exportPDF
exportData
- Custom report themes
Some objects and advanced object functionality are not supported for report packages. Those details are outlined in SAS Report Package Reference and further clarifications can be found at SAS Report Packages: Frequently Asked Questions.