or
| private void Chart_NeedDataSource(object sender, System.EventArgs e) |
| { |
| string strCompanyID = this.ReportParameters["CompanyID"].Value.ToString(); |
| // The above always gives the default parameter value in the sub report, but correct in the master report |
| // ... |
| } |
| Sunscape.TKS.Reports.KeyFigures report = new Sunscape.TKS.Reports.KeyFigures(); |
| report.ReportParameters["CompanyID"].Value = Session["intCompany_ID"]; |
| Telerik.Reporting.SubReport subReport = report.Items.Find("chartSubReport", true)[0] as Telerik.Reporting.SubReport; |
| subReport.Parameters[0].Value = Session["intCompany_ID"]; |
| this.ReportViewer.Report = report; |
chart1.PlotArea.XAxis.Appearance.MinorGridLines.Color = Color.Black;<BR> chart1.PlotArea.XAxis.Appearance.MinorGridLines.EndCap = LineCap.Flat;<BR> chart1.PlotArea.XAxis.Appearance.MinorGridLines.PenStyle = DashStyle.Solid;<BR> chart1.PlotArea.XAxis.Appearance.MinorGridLines.Visible = true;<BR> chart1.PlotArea.XAxis.Appearance.MinorTick.Visible = true;<BR> chart1.PlotArea.XAxis.Appearance.MinorTick.Color = Color.Black;[= "Date of " + Parameters.CALCDATE.Value][="Date of" + Format({0:d}, Parameters.CALCDATE.Value)]I've a problem with Report Viewer...
In a first time it's all ok...
but after a while when loads the page, it starts to blink (i can't use the report parameters)...
If I press ESC the report parameters are not available but if I refresh the page data are available but the part of parameters continuos to blink...
The report don't works as it should...
What's happened?
Is possible thinking that a process locks the browser?
Can you help me?
Best wishes
Luca Martini