使用.jqplotToImageStr({})的JQplot图像:IE中的渲染问题(+9)

时间:2014-03-06 21:52:22

标签: javascript image internet-explorer rendering jqplot

我正在使用我在网上找到的以下代码来创建jqplot的图像。它在Firefox和Chrome中运行良好,但图像在IE(+9)中混乱。点标签和图例都到处都是。

// given the div id of plot, get the img data
var imgData = $('#Barchartdiv').jqplotToImageStr({});

// create an img and add the data to it
var imgElem = $('<img/>').attr('src', imgData); 

//window.open(imgData, "_blank", "scrollbars=0");
$('#img_div').append(imgElem); // append the img to the DOM

任何帮助/建议?谢谢

1 个答案:

答案 0 :(得分:0)

不确定你的传说,但我在这里解决了我的点标签问题:

jqplot pointlabels off position in IE9+