我使用高级图表创建折线图,从数据库获取值并需要传递下面的值线图
//categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'] // This is static values
categories: [series] //Passing value from database
现在我创建了一个传递值的ajax函数
$.ajax({
type: "GET",
url: "/api/ReportAPI/GetMonthlyEmployeeFte",
data: '{}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (Result) {
var data = [];
for (var i in Result) {
var serie = new Array(Result[i].MONTH);
data.push(serie));
}
DreawLineChart(data);
},
failure: function (response) {
alert(response.responseText);
},
error: function (response) {
alert(response.responseText);
}
});
图表代码/功能
function DreawLineChart(series) {
Highcharts.chart('container2', {
chart: {
type: 'line'
},
title: {
text: 'Monthly Employee FTE'
},
subtitle: {
//text: 'Source: WorldClimate.com'
},
xAxis: {
//categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
categories: [series] //Here i want push data month from ajax
},
yAxis: {
title: {
text: 'FTE'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: 'Singapore',
data: [7.0, 6.9, 9.5, 14.5, 18.4, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
}, {
name: 'New Zealand',
data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
}]
});
}
但它在一个点上显示数据,而不是分别显示1月3月1月1月。
答案 0 :(得分:0)
不要为series
使用方括号。 series
已经是一个数组。仅使用categories: series