svg

This is the root element in an SVG document. It has the following attributes:

Attribute Description
version Specifies the language version this document conforms to.
x

X-axis coordinate of the origin of the viewport.

Note  Only 0 is supported.

y

Y-axis coordinate of the origin of the viewport.

Note  Only 0 is supported.

width

The width of the SVG image in user coordinates—it establishes the width of the viewport. Must be 0 or greater; if 0, the image will not be rendered.

height The height of the SVG image in user coordinates—it establishes the height of the viewport. Must be 0 or greater; if 0, the image will not be rendered.
viewBox A list of four (x y width height) coordinates that can each be separated by white space or a comma. This information specifies a rectangle in user coordinates, which will be mapped to the bounds of the viewport. (It implicitly generates a translate and scale transformation).

Note  FileMaker Pro requires values for the width and height attributes. If these values are not provided, you may experience rendering issues.