diff --git a/NEWS.txt b/NEWS.txt
index e051c42..e77a13b 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -32,6 +32,15 @@ but if you just configure a base color Flot will now autogenerate a
tick color by adding transparency. Backwards-compatibility hooks are
in place.
+Final note: now that IE 9 is coming out with canvas support, you may
+want to adapt the excanvas include to skip loading it in IE 9 (the
+examples have been adapted thanks to Ryley Breiddal). An alternative
+to excanvas using Flash has also surfaced, if your graphs are slow in
+IE, you may want to give it a spin:
+
+ http://code.google.com/p/flashcanvas/
+
+
Changes:
- Support for specifying a bottom for each point for line charts when
@@ -82,7 +91,8 @@ Bug fixes:
- Fixed a problem introduced in 0.6 with specifying a gradient with {
brightness: x, opacity: y }.
- Don't use $.browser.msie, check for getContext on the created canvas
- element instead and try to use excanvas if it's not found.
+ element instead and try to use excanvas if it's not found (fixes IE
+ 9 compatibility).
- highlight(s, index) was looking up the point in the original s.data
instead of in the computed datapoints array, which breaks with
plugins that modify the datapoints (such as the stacking plugin).
@@ -116,6 +126,7 @@ Bug fixes:
- Fix possible excanvas leak (report and suggested fix by tom9729).
- Fix bug with backwards compatibility for shadowSize = 0 (report and
suggested fix by aspinak).
+- Adapt examples to skip loading excanvas (fix by Ryley Breiddal).
Flot 0.6
diff --git a/README.txt b/README.txt
index 0d37717..1e49787 100644
--- a/README.txt
+++ b/README.txt
@@ -23,16 +23,18 @@ For support for Internet Explorer < 9, you can use Excanvas, a canvas
emulator; this is used in the examples bundled with Flot. You just
include the excanvas script like this:
-
+
If it's not working on your development IE 6.0, check that it has
support for VML which Excanvas is relying on. It appears that some
stripped down versions used for test environments on virtual machines
lack the VML support.
-You can also try using Flashcanvas (see FlashCanvas.net), which uses
-Flash to do the emulation. It might be faster with charts with many
-points. Flot contains some wrapper code for activating Excanvas which
+You can also try using Flashcanvas (see
+http://code.google.com/p/flashcanvas/), which uses Flash to do the
+emulation. Although Flash can be a bit slower to load than VML, if
+you've got a lot of points, the Flash version can be much faster
+overall. Flot contains some wrapper code for activating Excanvas which
Flashcanvas is compatible with.
You need at least jQuery 1.2.6, but try at least 1.3.2 for interactive
diff --git a/examples/ajax.html b/examples/ajax.html
index 385a834..22243ae 100644
--- a/examples/ajax.html
+++ b/examples/ajax.html
@@ -4,7 +4,7 @@