我正在尝试将 a 数据绑定Chart
到DataTable
. 我希望图表在添加新行时显示它们,但是在将新行添加到表中时图表不会更新。我已经验证了两者都table
包含tableDataSource
新行,但chart.Series["TestTable"].Points.Count
从未从5
.
基于问题Can't bind datatable to Chart Control的示例代码如下所示。我想知道下面的代码是否存在错误或遗漏,或者想知道实现相同目标的不同更好的方法。我知道如何手动向 a 添加点Series
,但我想看看如何使用数据绑定来做到这一点。
Random r = new Random();
Timer timer = new Timer();
DataTable table = new DataTable("TestTable");
DateTime date = new DateTime(2013, 1, 1);
IList tableDataSource = null;
void timer_Tick(object sender, EventArgs e)
{
table.Rows.Add(date, r.NextDouble());
date = date.AddDays(1);
chart.Update();
}
void MainForm_Load(object sender, EventArgs e)
{
table.Columns.Add("Date", typeof(DateTime));
table.Columns.Add("Percent", typeof(double));
for (int i = 0; i < 5; i++)
{
table.Rows.Add(date, r.NextDouble());
date = date.AddDays(1);
}
tableDataSource = (table as IListSource).GetList();
chart.DataBindTable(tableDataSource, "Date");
timer.Interval = 500;
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
}