
| Report report = new MyReport(); |
| report.Culture = new CultureInfo("en-US"); |
| report.DataSource = someDataSet; |
| string mimeType = ""; |
| string extension = ""; |
| Encoding encoding = null; |
| Hashtable deviceSettings = new Hashtable(); |
| deviceSettings["FontEmbedding"] = "Subset"; |
| deviceSettings["DocumentTitle"] = report.DocumentName; |
| deviceSettings["DocumentAuthor"] = "My Company"; |
| byte[] buffer = |
| Telerik.Reporting.Processing.ReportProcessor.Render("PDF", report, deviceSettings, out mimeType, out extension, out encoding); |
| // ... save the PDF using FileStream ... |
| // WinForms initialization code |
| private Telerik.ReportViewer.WinForms.ReportViewer mainReportViewer; |
| // .... |
| public void ShowReport(Report report) |
| { |
| mainReportViewer.Report = report; |
| mainReportViewer.RefreshReport(); |
| } |
Thread.CurrentThread.CurrentUICultureand
Thread.CurrentThread.CurrentCulture
Hello!
I seem to be having an issue where a vertical line gets added to my bar chart in the report viewer. As seen in the screenshots below, the preview of the chart in the report designer does not include the lines. However, when I generate the report in the chrome report viewer it adds lines that extend from the top of the bar to the number. This issue does not exist in our windows viewer, the only difference between the two reports are these lines.
Is there a workaround to this issue or am I accidentally checking a box somewhere in the designer?
Thanks,
Alex

<html><head><title>Error</title></head><body style='overflow:hidden;'><script type='text/javascript'>window.ErrorMessage = "<div style=\"text-align:left;padding-left:10px;padding-right:10px;\"><br /> <span style=\"font-family:'Verdana';font-size:18pt;color:Red;text-align:left;\">##SessionHasExpiredError##<hr size=1 style='width:100%; color:silver' /></span><br/><span style='color: maroon; font-size: 14pt; text-align:left; font-family:\"Verdana\"; font-style:italic'>##SessionHasExpiredMessage##</span><br /></div>";</script></body></html>After updating to v9.2.15.1126 for Reporting now the Export button does not work. No Export types are listed when the Export button is selected. There is no way to Export a report.
Printing works fine.
Best Regards,
Mark Kilroy
Hello,
I am doing a report with the option of exporting to excel and pdf.
I open the print preview in the excel file, I see an extra blank page
I setting BackgroundColor check problem,I find pageHeaderSection out of the scope of the paper,
my PageSetting
PaperKind:A4
Margins:Left 20mm Right30mm
Please help.
In attached ,pageHeaderSection BackgroundColor is green

Hi, I'm trying to produce the attached report, and as you can see the x-axis in this is grouped by a week (starting with Monday). I have written an extension method for determining the first day of the week for a date and given a DayOfWeek to treat as the "start of the week".
I have two questions, please:
1. I can get a chart working where it groups together all data for each week, so there is just one point for each week (for each series). However as you can see I need to still plot the series data on a day-by-day basis, so it's just the labelling of the x-axis that i want to be at a weekly level. Can you please advise if there is a way to do this?
2. How can I format the area series so that it fills the entire space for a given date? See second attachment for a (hopefully) better explanation of what I mean, comparing it with the "Chart requirements" JPG.
Thanks
