ハイチャートに問題があります。モデルをループすることにより、シリーズが動的に入力されます。シリーズの価値に基づいてハイチャートベースの色も変更する必要がある場合はどうなりますか?
これが私のコードです
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;
})()
}]