AmCharts 中ColumnChart获取数据问题
用数据集给 ColumnChart 绑定数据实现很简单,但是运行时会花费较长时间。我想让 ColumnChart 从结构体的数组中直接获取数值,就像下面的代码似地:ColumnChart1.Graphs.Clear();
ColumnChart1.Depth = 10;
ColumnChart1.ColumnGrowTime = 5;
ColumnChart1.PlotAreaBackgroundColor = System.Drawing.Color.Yellow;
ColumnChartGraph graph1 = new ColumnChartGraph();
for (int i = 0; i < 6; i++)
{
ColumnChartValuesDataItem column_item1 = new ColumnChartValuesDataItem();
column_item1.Value = arry[i].data2;
column_item1.Description = arry[i].data1;
graph1.Items.Add(column_item1);
}
然后想通过这种方法绑定上数据,但接下来就不知道怎样写了,麻烦知道的大侠们不吝赐教。谢谢……