为什么 HighChart 会挂起浏览器?

发布于 2024-12-26 15:15:31 字数 1086 浏览 0 评论 0原文

问题是我有这样的代码:

$(function(){
    data = [
             [1315522800001, 9],
             [1317596400000, 3],
           ];
    // Create the chart
    window.chart = new Highcharts.StockChart({
        chart : {
            renderTo : 'container'
        },

        rangeSelector : {
            selected : 1
        },

        title : {
            text : 'AAPL Stock Price'
        },

        series : [{
            name : 'AAPL',
            data : data,
            type : 'column',
            tooltip: {
                yDecimals: 2
            },
            dataGrouping: {
                units: ['day', [1]]
            }
        }]
    });
});

效果很好。显示漂亮的两列。问题是,如果我复制第二行数据,那么我将得到:

             [1315522800001, 9],
             [1315522800001, 9],
             [1317596400000, 3],

我没有得到预期的结果。更糟糕的是,浏览器耗尽了我所有的 RAM(在 Linux 上的 Opera 和 Firefox 以及 Mac 上的 Safari 上进行了测试)并且几乎不显示任何内容。

我的问题是我在这里做错了什么?我不知道什么? 网站上的所有更复杂的示例都可以工作,但我似乎找不到我的代码的任何特定问题。

The problem is that I have code like that:

$(function(){
    data = [
             [1315522800001, 9],
             [1317596400000, 3],
           ];
    // Create the chart
    window.chart = new Highcharts.StockChart({
        chart : {
            renderTo : 'container'
        },

        rangeSelector : {
            selected : 1
        },

        title : {
            text : 'AAPL Stock Price'
        },

        series : [{
            name : 'AAPL',
            data : data,
            type : 'column',
            tooltip: {
                yDecimals: 2
            },
            dataGrouping: {
                units: ['day', [1]]
            }
        }]
    });
});

Which works fine. Displays nice two columns. Problem is that if I duplicate second line of data, so I will have:

             [1315522800001, 9],
             [1315522800001, 9],
             [1317596400000, 3],

I don't get expected result. What's even worse browser eats all my RAM (tested on Opera and Firefox on Linux and Safari on Mac) and displays almost nothing.

My question is what am I doing wrong here? What I don't know?
All more complex examples from website work, but I cannot seem to find any particular problem with my code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄暮涼年 2025-01-02 15:15:32

数组中的第一个值是时间。您不能同时拥有两个值。

看看这个: http://jsfiddle.net/ndkKz/4/

The first value in the array is the time. You cannot have two values at the same time.

Look at this: http://jsfiddle.net/ndkKz/4/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文