Hi,<br />
<br />
I am pulling data stored in a ntext field on the database into a text field of type HTML in the report. When storing HTML tags together with the text on the database (e.g. 'The next field is <strong class='bbc'>bold</strong>.') then on the report the word bold is printed in bold as expected. I was wondering if it would be possible also to store SVG in the database and do the same thing with grahics, meaning the viewer would automatically render the SVG when producing the report?<br />
I tried storing this into the next field:<br />
<?xml version="1.0" encoding="utf-8"?><br />
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "
http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><br />
<br />
<svg xmlns="
http://www.w3.org/2000/svg"<br />
xmlns:xlink="
http://www.w3.org/1999/xlink" xmlns:ev="
http://www.w3.org/2001/xml-events"<br />
version="1.1" baseProfile="full"<br />
width="800mm" height="600mm"><br />
<br />
<circle cx="100" cy="100" r="50" /><br />
<br />
</svg<br />
and played around with the report designer to see what would happen. Unfortunately all I am getting back on the report is a blank field when using a text field of type HTML or auto. I searched the web and docu but didn't find anything that seemed to answer my question. Can anyone here help? Is this possible at all? (if so hopefully for end user as well or with or very little programming) or is this a weird idea?<br />
<br />
Thanks