0

我想在配置 highchart 代码之前操作 var 系列。

但我得到68系列!而不是我之前定义的 2 系列。

可能是什么错误?

在此处输入图像描述

 var series;
 function refresher() {      
series = "[{ name = 'test1', data = data[0]},{ name = 'test', data = data[1]}]";          

        $.getJSON(url, 
        function(data) {            

        chart = new Highcharts.StockChart
        ({
        chart:  {  renderTo: 'container', zoomType: 'x',   type: 'line', width: 900 },  
        legend: { enabled: true, verticalAlign:'bottom' },
        title:  { text: 'You see the data of the last measured hour!' },  
        credits: { enabled: false  },           
        xAxis: {  type: 'datetime', title: { text: 'time'  } },
        yAxis: { title: { text: 'hallo'  } },       
        rangeSelector:{ enabled: false },
        navigator : { enabled: false },
        series: series,      
            tooltip: {  xDateFormat: '%e. %b.%Y  %H:%M:%S', valueDecimals: 2,  },   
        exporting: { enabled: true },
        });  
        // Format the y-data.
        Highcharts.numberFormat(this.y, 2, '.', ',');
    });
};
4

1 回答 1

1

问题出在series变量中。

首先,它是一个字符串,而不是一个对象。

我不知道您为什么要这样使用它,但是如果您真的希望它是一个字符串,则在将eval其提供给series对象时必须使用它:

...
series: eval(series)
...

此外,它不是:

series = "[{ name = 'test1', data = data[0]},{ name = 'test', data = data[1]}]"

等号不正确。它一定要是:

series = "[{ name: 'test1', data: data[0]},{ name: 'test', data: data[1]}]"

(我用冒号替换了等号。)

于 2013-07-11T15:21:47.950 回答