- 积分
- 0
- 在线时间
- 11 小时
- 主题
- 1
- 注册时间
- 2015-7-20
- 帖子
- 12
- 最后登录
- 2017-12-25
- 帖子
- 12
- 软币
- 123
- 在线时间
- 11 小时
- 注册时间
- 2015-7-20
|
本帖最后由 cutesun 于 2015-9-8 16:55 编辑
数据表如下:日期 | 作物发育期 | 年份 | 2015/9/3 | 水稻成熟 | 1991 | 2015/9/5 | 水稻成熟 | 1990 | 2015/9/2 | 水稻成熟 | 1989 | 2015/9/4 | 水稻成熟 | 1988 | 2015/9/1 | 水稻成熟 | 1987 | 2015/9/9 | 水稻成熟 | 1985 | 2015/8/1 | 玉米成熟 | 1984 | 2015/9/7 | 水稻成熟 | 1983 | 2015/7/31 | 玉米成熟 | 1982 | 2015/8/31 | 水稻成熟 | 1981 | 2015/9/7 | 水稻成熟 | 1980 |
代码如下:
chartControl1.DataSource = fyq;
chartControl1.SeriesDataMember = "作物发育期";
chartControl1.SeriesTemplate.ArgumentDataMember = "日期";
chartControl1.SeriesTemplate.ValueDataMembers.AddRange(new string[] { "年份" });
chartControl1.SeriesTemplate.View = new StackedBarSeriesView();
标注那行错误提示:An unhandled exception of type 'System.ArgumentException' occurred in DevExpress.XtraCharts.v15.1.dll
Additional information: It's necessary to specify 2 value data members for the current series view.
求高人指点!!
|
|