| Valid in: | Configuration file, SAS invocation, OPTIONS statement, SAS System Options window |
| Category: | Log and procedure output control: SVG |
| PROC OPTIONS GROUP= | SVG |
| Restriction: | The SVGHEIGHT= option sets the height attribute only on the outermost <svg> element. |
| Note: | This option can be restricted by a site administrator. For more information, see Restricted Options. |
<svg> elements,
the SVGHEIGHT= option specifies the height of the rectangular region
into which the <svg> element is placed.
The SVG output is scaled to fit the viewBox if SVGHEIGHT="100%".
options printerpath=svg orientation=portrait svgheight="100%" svgwidth="100%"
papersize=letter;By using these option values,
SAS creates the following <svg> element:<svg> xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xml:space="preserve"
onload='Init(evt)' version="1.1"
width="100%" height="100%"
viewBox="-1 -1 817 1057"
</svg>