php数据钻取工具,如何制作Drill-Down向下钻取报表,为数据分析提供多种交互能力...

分组报告是数据分析所必需的。但是当有大量数据并且不需要全部显示时,带有分组的常规报告变得麻烦且多余。您希望为此类案例找到通用解决方案吗?这里正好有一个。

带有下拉列表的报告本质上是一个包含分组数据的报告,但能够通过鼠标单击隐藏或显示组中的数据。它不仅非常方便,而且美观。毕竟,报告成为一个交互式对象。当用户可以参与信息显示时,用户会很高兴。

考虑如何制作此类报告的示例。首先,与Master-Detail主从报表一样(点击这里查看如何制作Master-Detail主从报表>>),我们需要一个包含链接表的数据源。假设我们有两个表:客户和订单。

74be40367d036d08ab87548aa6dfa886.png

一个客户可以做很多订单——一对多的关系。我们加上吧。单击Actions按钮,然后从下拉列表中选择New Relation ...

d872dee8b1b7a429ef3e390edfa28064.png

父表是主表,然后选择“customer”。子表分别是“orders”。在“customer”中有一个主键CustNo,在列表中选择它。在“orders”中有一个外键CustNo,也选择它。

结果,我们获得了连接:

24a084bd6af40a67b1845916bbba9ebd.png

现在让我们开始创建报告模板。添加一个频段“group header”。在它上面我们将放置链接中的字段:“orders.customer.Company”、“orders.customer.Addr1”、“orders.customer.Phone”、“orders.customer.Contact”。

除了这些字段之外,我们还要为此频段添加一个复选框控件。在CheckedSymbol属性中,选择Plus,然后选择UncheckedSymbol - Minus。

添加“orders”表中的字段:OrderNo、SaleDate、PaymentMethod、AmountPaid到“Data”频段。另外,为数据和字段标题添加标题区:

185ad9842f087c2cfd5df461ff5bbb38.png

双击组标题“Headline”。选择要分组的字段:

5cc65f5801e8eb03f53e74e485db9ff6.png

现在选择我们之前添加的复选框。给它一个Hyperlink属性:

64d7785d397830d529dddd971ec995cb.png

选择“Group Header”区域并为其创建BeforePrint事件处理程序:

b6a0511c86c74d81aa246f0084db0bd6.pngprivate void GroupHeader1_BeforePrint(object sender, EventArgs e)

{

string groupName = (String)Report.GetColumnValue("orders.customer.Company");

// get the group name

bool groupVisible = expandedGroups.Contains(groupName);

// Check group visibility

DataHeader1.Visible = groupVisible;

Data1.Visible = groupVisible;// Set the visibility of data in accordance with the visibility of the group

GroupFooter1.Visible = groupVisible;// Set the visibility of the basement of the group in accordance with the visibility of the group

CheckBox1.Checked = !groupVisible;// Set the state of the flag depending on the visibility of the group

}

还要向类添加扩展组列表:private List expandedGroups = new List();

让我们回到我们的复选框。为此,创建一个Click事件处理程序:private void CheckBox1_Click(object sender, EventArgs e)

{

string groupName = (sender as CheckBoxObject).Hyperlink.Value; // We get the name of the group from the hyperlink

if (expandedGroups.Contains(groupName)) // If the list of visible groups contains the selected group

expandedGroups.Remove(groupName); // Then remove the selected from the list of visible groups.

else

expandedGroups.Add(groupName); // Otherwise add the group to the list of visible

Report.Refresh(); // Update Report

}

以预览模式运行报告:

fc53c40b0fc76a5883996a7486938656.png

现在点击任何加号:

feab389b8365ea220d04d025de9eecdd.png

当您单击减号时会分组折叠。大神们都表示同意,这样确实很方便。

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果

f0a36711cb266f2a250316798aab13ae.png0

好文不易,鼓励一下吧!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值