标题:AmCharts 中ColumnChart获取数据问题
只看楼主
someday
Rank: 3Rank: 3
来 自:保定
等 级:论坛游侠
帖 子:83
专家分:116
注 册:2010-10-8
结帖率:70.59%
 问题点数:0 回复次数:0 
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);
        }
然后想通过这种方法绑定上数据,但接下来就不知道怎样写了,麻烦知道的大侠们不吝赐教。谢谢……
搜索更多相关主题的帖子: 结构体 
2011-11-30 12:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-356583-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.817631 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved