我有来自 linq 查询的 var t 具有这种结构:
[0] = { Type = "K", Count = 1 }
[1] = { Type = "Z", Count = 8 }
现在我想优雅地将它绑定到我的图表(没有foreach)。我尝试做这样的事情:
series1.Points.DataBindXY(t. ????, t.????);
但我不知道如何获取我的 var 的“第一列”和“第二列”。请帮忙
编辑:我的 linq 查询:
var t= (from oAction in Actions
group oAction by oAction.Type.Name into g
select new { Type = g.Key, Count = g.Count() }).ToArray();