Add new issue and PR templates
[dygraphs.git] / docs / ie.html
index 70ad4ac..49fa80f 100644 (file)
 
 <p>When IE9 is in HTML5 mode, dygraphs works just like in other modern browsers.</p>
 
-<p>You should seriously consider stopping here! Older versions of IE have a small market share that's decreasing by the day. <a href="http://www.nytimes.com/">Major web sites</a> have dropped support for IE8. Future versions of dygraphs will do the same. But if you insist&hellip;</p>
-
-<p>If you want to support previous versions of Internet Explorer (IE6&ndash;IE8), you'll need to include the <a href="http://code.google.com/p/explorercanvas/">excanvas</a> library, which emulates the <code>&lt;canvas&gt;</code> tag using VML. You can add excanvas by including the following snippet:</p>
-
-<pre>
-&lt;!DOCTYPE html&gt; 
-&lt;html&gt;
-  &lt;head&gt;
-    &lt;meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9"&gt; 
-    &lt;!--[if IE]&gt;&lt;script src="path/to/excanvas.js"&gt;&lt;/script&gt;&lt;![endif]--&gt;
-  &lt;/head&gt;
-</pre>
-
-<p>(This is surprisingly tricky because the HTML5 doctype breaks excanvas in IE8. See <a href="https://groups.google.com/group/dygraphs-users/browse_thread/thread/c60709e04bc7fe5f#">this discussion</a> for details. Note that the &lt;meta http-equiv&hellip;&gt; line must appear <i>first</i> in the &lt;head&gt; section for this to work properly.)</p>
-
-<p>While VML emulation sounds like it would be slow, it works well in practice for most charts.</p>
-
-<p>One common gotcha to look out for: make sure you don't have any trailing commas in parameter lists, e.g.</p>
-
-<pre>
-new Dygraph(el, data, {
-  showRoller: true,  // note trailing comma
-})</pre>
-
-<p>Most browsers will ignore the trailing comma, but it will break under IE.</p>
-
-<p>You may also need to delay instantiating any dygraphs until after the DOM
-content is ready, as there have been some <a
-  href="https://groups.google.com/d/topic/dygraphs-users/qPX4Syx2kz8/discussion">reports</a>
-that excanvas won't work until this happens. If you're using jQuery, this
-means drawing your charts inside of a <code>$(function() { ... })</code>
-block.</p>
+<p>If you need to support older versions of IE, which do not have native
+    <code>&lt;canvas&gt;</code> implementations, you'll need to use the <a
+      href="/1.1.0/download.html">1.x series of dygraphs</a> and follow <a
+        href="/1.1.0/ie.html">its instructions for IE</a>.
+</p>
 
 <!--#include virtual="footer.html" -->