0
我想在配置高圖代碼之前操作var系列。Highcharts - 顯示太多系列
但我得到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, '.', ',');
});
};
有人告訴我,我可以把它這樣:HTTP://計算器。 com/questions/16838742/can-i-use-different-if-conditions-in-highstock-code Thanks!現在它工作 – Susanne92
請注意,他沒有提到任何地方的字符串。如果你不用引號來書寫它,你會得到一個對象,你不再需要評估它。但是在這種情況下,您必須在'getJSON'回調函數內部寫入賦值,因爲只有這樣纔會定義'data'。請參閱[this jsFiddle](http://jsfiddle.net/ssarabando/7gtga/3/)的第61和103行以查看示例。 – ssarabando