我正在尝试构建我的第一个图表,我已经将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;
}
答案 0 :(得分:1)
您应该可以通过修改代码来设置系列,如下所示:
function requestData() {
$.post('/Gameplan/Team/GetRegularSeasonWins', {
strTeam: "Atlanta Falcons",
strSeason: "2016"
}, function (result) {
var categories = [];
$.each(result, function (i) {
chart.series[0].addPoint(result[i].Wins, false);
categories.push(results[i].Season)
});
chart.xAxis[0].setCategories(categories);
chart.redraw();
});
}
但总的来说,如果你遇到过highcharts问题,他们会great documentation解释每个配置选项和功能,以及JSFiddle示例。