1:排序问题
这个report 分组 功能 要求给的数据源 排序必须 排正确了,
比如 产品
苹果 红色
苹果 绿色
橘子 黄色,
橘子绿色
这个水果按水果排序, 则苹果 一组 ,橘子一组,
如果 上边排序有问题,比如
苹果 红色
橘子绿色
苹果 绿色
橘子黄色 数据源集合是这么排序的,
那报表显示分组统计就会不正常了.
2:修改报表字段后,发现排除排序问题后还是不能解决.
就找报表的xxx.designer.cs 文件
找到类似下边 new DevExpress.XtraReports.UI.GroupField 地方 改成你指定的字段, 我发现在报表内改了后在此没有改变
// // GroupHeader1 // this.GroupHeader1.Expanded = false; this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] { new DevExpress.XtraReports.UI.GroupField("ProductsName", DevExpress.XtraReports.UI.XRColumnSortOrder.None)}); this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail; this.GroupHeader1.HeightF = 1.460966F; this.GroupHeader1.Level = 1; this.GroupHeader1.Name = "GroupHeader1";
改完后问题解决.
技术交流qq群:143280841