2

Highcharts JS 版本: 3.0.3 浏览器 Internet Explorer 8 参考网址:http: //jsfiddle.net/aDCXR/1/show/

问题: 当光标触及任何条形图(我假设所有图表)然后返回到 html 页面时。(鼠标移出/关闭 Highcharts),我只在 IE 8 中收到以下错误。

消息:对象不支持此属性或方法行:4 字符:8558 代码:0 URI:https ://ajax.googleapis.com/ajax/libs/j ... ery.min.js

根据我在网上阅读的内容,这是 Highcharts JS 库中的一个错误。

有谁知道修复,所以 IE8 不会产生这个错误?

下面的代码仅适用于 stackoverflow 要求。

$(function () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container'
            },
            title: {
                text: 'Combination chart'
            },
            xAxis: {
                categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums']
            },
            tooltip: {
                formatter: function() {
                    var s;
                    if (this.point.name) { // the pie chart
                        s = ''+
                            this.point.name +': '+ this.y +' fruits';
                    } else {
                        s = ''+
                            this.x  +': '+ this.y;
                    }
                    return s;
                }
            },
            labels: {
                items: [{
                    html: 'Total fruit consumption',
                    style: {
                        left: '40px',
                        top: '8px',
                        color: 'black'
                    }
                }]
            },
            series: [{
                type: 'column',
                name: 'Jane',
                data: [3, 2, 1, 3, 4]
            }, {
                type: 'column',
                name: 'John',
                data: [2, 3, 5, 7, 6]
            }, {
                type: 'column',
                name: 'Joe',
                data: [4, 3, 3, 9, 0]
            }, {
                type: 'spline',
                name: 'Average',
                data: [3, 2.67, 3, 6.33, 3.33],
                marker: {
                    lineWidth: 2,
                    lineColor: Highcharts.getOptions().colors[3],
                    fillColor: 'white',
                    symbol: 'url(http://highcharts.com/demo/gfx/sun.png)'
                }
            }, {
                type: 'pie',
                name: 'Total consumption',
                data: [{
                    name: 'Jane',
                    y: 13,
                    color: '#4572A7' // Jane's color
                }, {
                    name: 'John',
                    y: 23,
                    color: '#AA4643' // John's color
                }, {
                    name: 'Joe',
                    y: 19,
                    color: '#89A54E' // Joe's color
                }],
                center: [100, 80],
                size: 100,
                showInLegend: false,
                dataLabels: {
                    enabled: false
                }
            }]
        });
    });

});
4

2 回答 2

3

该错误与highcharts无关,但与jquery有关。您需要更新您正在使用的版本(您提供的示例是 1.7.2),最新版本的 jquery 是 1.9.1,应该会处理它。

于 2013-08-19T20:20:00.007 回答
0

这个问题也已在 Highcharts 中得到修复,因此它现在可以与宣布的旧 jQuery 版本一起使用。虽然当然建议您使用最新的 jQuery。请参阅https://github.com/highslide-software/highcharts.com/issues/2161

于 2013-08-21T07:31:29.500 回答