HumbleSoftware / Flotr2

Graphs and Charts for Canvas in JavaScript.
http://www.humblesoftware.com/flotr2/
MIT License
2.45k stars 528 forks source link

Spreadsheet (aka. Download Data) broken in IE #241

Open s33k3r opened 10 years ago

s33k3r commented 10 years ago

Download Data has the following issues when using IE.

Steps to reproduce Go to the example page with one of the browsers listed. http://www.humblesoftware.com/flotr2/#!download-data

Browsers/Environment IE8, IE9, IE10

ukrit-himakoon commented 10 years ago

Experience the same problem, any fix or workaround for this?

francois-m commented 10 years ago

Dive into flotr.js and comment line in function Flotr.DOM.node() like this : Flotr.DOM = { ... node: function(html) { var div = Flotr.DOM.create('div'), n; div.innerHTML = html; n = div.children[0]; //div.innerHTML = ''; // issue with IE return n; } It does not seem to break correct behaviour with other browsers...