我一直在尝试使用基本的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个小时,我一直在用这个东西搞砸了。
答案 0 :(得分:0)
我正在以略微不同的方式构建我的图表 - 也许是因为我在MVC页面中构建我的图表? 无论如何,我仍在使用MS Chart的东西 - http://msdn.microsoft.com/en-us/library/ee410579.ASPX
我创建了我的图表:
var chart = new Chart();
chart.Width = 900;
chart.Height = 500;
...lots more options...
然后一次添加我的系列....
chart.Series.Add(CreateDataSeries(id, "GI Lower", null, null, GetGILowerDataPoints));
chart.Series.Add(CreateDataSeries(id, "GI Upper", null, null, GetGIUpperDataPoints));
其中CreateDataSeries设置图表类型如下:
Series seriesDetail = new Series();
seriesDetail.ChartType = SeriesChartType.Spline;
...
return seriesDetail;
这有帮助吗?