我正在尝试构建我的第一个图表,我已经将我的 y 轴数据拉入,但我仍然不确定如何从我的数据源构建我的 x 轴。我当前的代码硬编码了其中的值,但这些值应该来自 result[i].Season。这是我的代码,有人可以帮忙吗?
var chart;
$(document).ready(function () {
chart = new Highcharts.Chart({
chart: {
renderTo: 'graphcontainer',
defaultSeriesType: 'line',
events: {
load: requestData
}
},
legend: {
enabled: false
},
colors: [
'#c9243f'
],
credits: {
enabled: false
},
title: {
text: 'Regular Season Wins',
style: {
fontWeight: 'normal'
}
},
xAxis: {
categories: [
'92',
'93',
'94',
'09',
'10',
'11',
'12',
'13',
'14',
'15'
],
title: {
text: 'Season'
}
},
yAxis: {
min: 0,
max: 16,
tickInterval: 2,
title: {
text: 'Games Won'
}
},
tooltip: {
formatter: function () {
return '' +
this.x + ': ' + this.y + ' wins';
}
},
series: [{ data: []}]
});
});
function requestData()
{
$.post('/Gameplan/Team/GetRegularSeasonWins', { strTeam: "Atlanta Falcons", strSeason: "2016" }, function (result) {
$.each(result, function (i) {
chart.series[0].addPoint(result[i].Wins, false);
});
chart.redraw();
});
}
我的数据访问:
public List<RegularSeasonWins> GetRegularSeasonWins(string strTeam, string strSeason)
{
List<RegularSeasonWins> lstRegularSeasonWins = new List<RegularSeasonWins>();
lstRegularSeasonWins = (from w in _database.RegularSeasonWins(strTeam, strSeason)
select new RegularSeasonWins
{
Team = w.Team,
Coach = w.coach,
Season = w.seasonshort,
Wins = w.won
}).ToList();
return lstRegularSeasonWins;
}