我的 highchart 有问题,我的系列是通过循环我的模型来动态填充的。如果我还需要根据我的系列值更改我的 highchart 的颜色怎么办。
这是我的代码
series: [{
name: 'Flag',
showInLegend: false,
pointWidth:24,
pointPadding:0,
groupPadding:0,
data: (function()
{
var data = [];
@{
var itemSumaryListData = Model;
int subordinateCount = itemSumaryListData.subordinateCount;
if(itemSumaryListData.employeeteamlevelsummarylist.Count > 0){
foreach (var employee in itemSumaryListData.employeeteamlevelsummarylist) {
<text>data.push(@employee.TotalFlag );</text>
}
}
}
return data;
})()
}]