Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am using RDLC pie charts with Two slices...., if user Click on one slice it should take to another Report...,

C#
protected void rptepaymentstatus_OnDrillthrough(object sender, DrillthroughEventArgs e)
       {

LocalReport report = (LocalReport)e.Report;
            string ststus = string.Empty;
            IList<ReportParameter> list = report.OriginalParametersToDrillthrough;
            foreach (ReportParameter param in list)
            {
                
                ststus = Convert.ToString(param.Values[0]);
            }
            try
            {
                DataTable OutPutData = new DataTable();
                OutPutData = ObjClsDashboard.GetEpayrpt(dtFromdate.SelectedDate, dttoDate.SelectedDate, ststus);
                DataTable dt = new DataTable();
                rptepaymentstatus.LocalReport.ReportEmbeddedResource = "@rptEpaymentStatus.rdlc";
                
                //rptepaymentstatus.LocalReport.ReportPath = @"rptEpaymentStatus.rdlc";
                rptepaymentstatus.LocalReport.DataSources.Clear();
                rptepaymentstatus.LocalReport.DataSources.Add(new Microsoft.Reporting.WebForms.ReportDataSource("DSEpayStatus", OutPutData));
                rptepaymentstatus.LocalReport.DataSources.Add(new Microsoft.Reporting.WebForms.ReportDataSource("DSEPMS", OutputData1));
                rptepaymentstatus.DocumentMapCollapsed = true;
                rptepaymentstatus.LocalReport.Refresh();
                rptepaymentstatus.ShowParameterPrompts = false;
                rptepaymentstatus.Visible = true;


}

First how to acheive my scenario..? Am i using proper method.? Need a Urgent help pls..,
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900