tags:

views:

107

answers:

4

I have a graph rendered in web by means of embedded <svg> object. Works properly in Firefox, Safari and other browsers. Except IE7+. What is a good alternative to SVG for IE? The graph is very simple, and uses just lines, circles, and texts.

Thanks in advance.

A: 

Hi Vincenzo, while doing a quick search on google regarding this I came across a fix from MS which is from 2008. Have you tried this already?

http://support.microsoft.com/kb/935575

VoodooChild
This only applies if the user has the Adobe SVG plugin installed. IE does not natively support SVG without plugins.
Dean Harding
Plus this doesn't really help if you require your website's visitors to download a fix first before being able to see the content.
poke
A: 

IE (except for the upcoming IE9) does not support SVG. You can do it with a plugin, but that's probably a bit much to ask for your end-users to install.

If you don't mind a little extra work, IE does support VML which is "kind of" like SVG, just IE-only.

Dean Harding
A: 

Here are a couple of options:

Erik Dahlström
Many thanks, I will definitely go with one of those options!
Vincenzo
A: 

how about SIE?

http://sie.sourceforge.jp/demo.html

yomotsu