Yes, IE 9 is still a beta, yet some things lead me to the conclusion that the reputation graph still won't work in the final build:
- Stack Overflow uses IE's standards mode, i.e. the mode where IE tries its best to conform to standards (cue trolls here); it could opt for IE8 mode with X-UA-Compatible, however.
- The reputation graph is drawn via HTML 5 Canvas, a feature that previous versions of IE do not support, yet IE 9 does, beta or not.
Canvas is emulated on IE using VML. This correctly uses feature detection instead of checking for the browser (excanvas.min.js, line 1, char 1):
if(!document.createElement("canvas").getContext) { ... }Flot, the jQuery plugin responsible for drawing the graph, uses a haphazard approach to determine whether some initialization code needs to be run (jquery.flot.min.js?0.6, line 1, char 11482):
if (C.browser.msie) { window.G_vmlCanvasManager.init_(document) }Since
G_vmlCanvasManagerisundefined, this breaks, leaving an empty space on the page.
Now, this is clearly not an SO bug, but rather in Flot. Judging from Issue 408 this has been known for some time, with partial fixes but nothing conclusive so far.
A quick and dirty fix (uneducated, I have no clue of JavaScript) would be that replacing above snippet with
if (!document.createElement("canvas").getContext) {
window.G_vmlCanvasManager.init_(document)
}
or
if (window.G_vmlCanvasManager) {
window.G_vmlCanvasManager.init_(document)
}
The latter of which should probably be nicer. I don't know how feasible it is to do SO-side fixes to external dependencies, but maybe it's no problem at all.