ValuesSource可以设置数组,代码参考:
- // Clear previous data
- chart.Data.Children.Clear();
- double[] values = { 1, 4, 9, 16 };
- // Create column series
- chart.Data.Children.Add(new DataSeries()
- {
- ValuesSource = values
- });
复制代码
数据源绑定请参考产品博客,链接如下(里面有提供代码和示例):
http://blog.gcpowertools.com.cn/ ... F_DataBinding1.aspx |