.. include:: /Includes.rst.txt .. _cobj-svg: === SVG === With this object type you can insert a SVG. You can use XML data directly or reference a file. A flash fallback will be used for browsers which do not have native SVG support, so that it also works in e.g. IE 6/7/8. .. ### BEGIN~OF~TABLE ### .. container:: table-row Property width Data type integer /:ref:`stdWrap ` Description Width of the SVG. Default 600 .. container:: table-row Property height Data type integer /:ref:`stdWrap ` Description Height of the SVG. Default 400 .. container:: table-row Property src Data type :ref:`file resource ` /:ref:`stdWrap ` Description SVG file resource. **Example:** :: src = fileadmin/svg/tiger.svg .. container:: table-row Property value Data type XML /:ref:`stdWrap ` Description Raw XML data for the SVG. Will be ignored, if "src" is defined. .. container:: table-row Property noscript Data type string /:ref:`stdWrap ` Description Output, if SVG output is not possible. .. container:: table-row Property stdWrap Data type :ref:`->stdWrap ` .. ###### END~OF~TABLE ###### [tsref:(cObject).SVG] .. _cobj-svg-examples: Example: """""""" :: 10 = SVG 10 { width = 600 height = 600 value ( ) noscript.cObject = TEXT noscript.cObject.value = No SVG rendering possible, please use a browser. } This example will show some geometric forms.