HTML5 report viewer question:
Imagine I want to create a stacked bar chart report with the number of NFL, NBA and MLB teams by state. I am not able to print this on a letter width page because there are too many states to fit horizontally. I would like to have the report print 10 states on 5 pages, showing the team bar charts on each page. The legend should be repeated on each page, too. Is there a way to control page rendering and pagination in this way with the HTML5 report viewer? I have read about "keep together" and page breaks, but I have not found where "keep together" or page breaks are set for the Q3 2015 HTML5 report viewer. I haven't found anything about repeating the legend on each page, either. Is any of the above possible with the HTML5 report viewer control?
Hello,
I want to create a clustered column chart which will depict how many tickets are sold in a month for events in the current and the next few months as you can see on the attached image chart.jpg. Is that possible with Telerik Reporting? Do I have to use two category groups to get the chart I want? I tried but with no luck.
My data source is an array of items of the following class:
public class Report1Model{ public string Titel { get; set; } public DateTime OrderDateTime { get; set; } public DateTime EventDateDateTime { get; set; } public int TicketCount { get; set; }}The second attached picture chart-properties.png is a screenshot of the properties of my chart.
Please help. I don't get any further.
Greetings from Germany,
Tobias
Hi,
I'm using the full Telerik DEVCRAFT kit and
finally found my way to the Reporting section.
I always used .rdl files to load my reports.
In Visual Studio2015 I created a Telerik Lib Q3
Project.
The Design was very similar to the ReportDesigner
in VisualStudio2010.
But at the end, I got an .CS file and don't know
how to Export this to use as a report on my SQL Report Server.
Is there a guide or something to export them?
I'm sad that the videos from Telerik are very old.
VisualStudio 2005 examples...
BR
Raphael
Hello everyone.
We have a web application application running Telerik Reporting. Our session timeout is set to 20 minutes in the web.config file. However, if the user does not interact with the page (i.e. they are reading the report) and then attempt to scroll down after about 60 seconds, they get: "Session has expired. Please, refresh the page." in the report window. This is a consistent problem and adjusting the session timeout in the web.config does not appear to have any effect.
Can someone point me in the right direction?
I appreciate your time in advance!
Chris
I have a standard winforms app displaying numerous Telerik reports in a winforms ReportViewer, using Reporting Q3 2015.
My users would like a couple features implemented:
1. Ability to select/copy/paste report content from a report to some other app.
When the report is instantiated in the report viewer and mouse is over it, a hand cursor appears, enabling scrolling of the report, but no other functionality.
Is there a way to alter that behavior to allow a user to select some content in the report, then CTRL-C it, similar to what can be done in reports in the Telerik web report viewer?
I don't need to allow editing of the report at runtime, just "mousedown -> drag to select -> ctrl-c".
2. Ability to export reports to PDF or Excel without having to save first.
I found this article: http://www.telerik.com/help/reporting/faq-display-pdf-browser.html
Obviously the winforms report viewer already has export to PDF/Excel functionality in the report toolbar... Is there a way to override that click event?
Of course I could simply put a new button on the form, enabling that export without saving first functionality... but having 2 export buttons certainly isn't efficient.
If it makes any difference, in my app I have some reports implemented as classes from a library, and others as trdx files. So can go either way if it makes things easier.
Thanks much for assistance with these issues.
Hi,
I am trying to create a report with a table layout and would like to remove all bottom borders except when the next row contains a specified value. Kind of like grouping the data in section without the bottom border. How can this be done?
James
hello I want to Access report fields from a Table item and I've tried the follow example as in the http://www.telerik.com/help/reporting/faq-accessing-items.html
Private Sub tabelaLivroPonto_ItemDataBinding(sender As Object, e As EventArgs) Handles tabelaLivroPonto.ItemDataBinding
'get the textbox from the sender object
Dim textBox As Telerik.Reporting.Processing.TextBox = DirectCast(sender, Telerik.Reporting.Processing.TextBox)
'get the table object
Dim table As Telerik.Reporting.Processing.Table = DirectCast(textBox.Parent, Telerik.Reporting.Processing.Table)
'get the detail section
Dim detail As Telerik.Reporting.Processing.DetailSection = DirectCast(table.Parent, Telerik.Reporting.Processing.DetailSection)
'get the raw value from the Report datasource directly
textBox.Value = detail.DataObject("DiaSemana")
MsgBox(textBox.Value)
End Sub
but I got the follow error in my reportviewer
"An erro has ocurred while processing table "tabelaLivroPonto" <- my table
Unable to cast object of type 'Telerik.Reporting.Processing.Table' to type 'Telerik.Reporting.Processing.TextBox'
Please, someone could help me?
ty
Hi,
I'm trying to develop a report and I'm having problems with border lines. I have text boxes drawn from the data Explorer in the detail section and I want vertical lines separating all the columns and horizontal lines after rows that contain a specified value. I'm having problems with vertical lines when the data in some columns span more than one row(see attachment). Also how can I create horizontal lines conditionally based on the data in the next row?
James