也许我在这里做了一些根本性的错误,但是在用 C # 开发 ASP.NET 应用程序时,我遇到了 Clear ()和 new 的不同之处。
我正在创建一个带有图表的统计页面,其中包含数据系列。
对于每个图表,我都有一个部分,在其中我这样做:
chart = new ChartistChart() { Title = "My fancy chart" };
series = new List<ChartistMetaValue>();
*some code for getting the statistics*
chart.Series.Add(series);
chartistLineCharts.Add(chart);
接下来是另一张图表。
chart = new ChartistChart() { Title = "My second fancy chart" };
series = new List<ChartistMetaValue>();
*some code for getting the statistics*
chart.Series.Add(series);
chartistLineCharts.Add(chart);