我一直在尝试使用基本的 asp.net Chart 类来呈现折线图。无论我做什么,它总是呈现一个柱形图。这是我将数据表绑定到图表的代码。
var IEtable = (table as System.ComponentModel.IListSource).GetList();
var chart = new Chart(width: 1000, height: 1000)
.AddSeries(chartType: "Line").AddLegend("Key")
.AddTitle("Time Series Metric")
.DataBindCrossTable(IEtable, "Key", "Date", "Value");
有人可以帮忙吗?自从超过 12 个小时以来,我一直在用这件事打破我的头。