this
.textBox1.Location =
new
Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D));
this
.textBox1.Name =
"textBox1"
;
this
.textBox1.Size =
new
Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D));
this
.textBox1.Style.Font.Name =
"Verdana"
;
this
.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(6.75D);
this
.textBox1.Value =
"Test01 test02 test03 test04 test05 test06 test07 test08 test09 test10 test11 test"
+
"12 test13 test14 test15 test16"
;
Hey,
currently I'm trying to switch from local dependencies to nuget. My problem is, that I can't find a package for
Telerik.ReportViewer.Wpf. Does this package not exists?
Thanks a lot!
Hi,
I was ondering if there is anyway of creating telerik reports that get their data from linq queries; usually i add my sql query on my sql data source to feed the report but i'm wondering if i could use linq instead and if that would provide me with some performance improvements.
Regards.
I would like to disable PrintViewToogleButton once it is clicked for PrintView. I do not want to go back to interactive mode again. The main reason for this is that I generate report with images for over 300 pages and RAM extremely goes up to 2GB while using interactive view mode. But printview mode is OK.
I couldn't handle this. Firstly I really wonder how to disable buttons programmatically.
For this purpose, I came up with another solution. I always set the PrintPreview view mode to the reportviewer as following;
private
void
ReportViewer_OnRenderingBegin(
object
sender, CancelEventArgs e)
{
if
(VehiclePass01ViewModel.pageRenderMode != ViewMode.PrintPreview)
{
this
.reportViewer.ViewMode = ViewMode.PrintPreview;
}
}
But in this case, total page number changes strangely as shown on the attachments. Normally there are 343 pages. When I click on the button again, total page number changes to 685,681,686 or 684. But actually, page number is still 343 on the report. If I try to go to next pages by buttons, it goes until 343 despite the count is 68X which is correct.
If disabling button would exist, that could be awesome.
Any solution is very welcome.
Thank you.
Hello!
Our company wants
to add Telerik's reporting system to our project written in asp.net mvc.
The task is the
following: the user selects filters, then the page sends these filters to the
server, the server makes a query to the database according to the selected
filters, creates the object, then passes this object to the report, and then
the report returns to the page.
In the application, we want to use .cs reports, however the "Telerik MVC Report Viewer View" template adds a .trdp-report. If we create manually new .cs-report, we can not connect it.
In addition, we would like to store reports in a separate project. And make a separate project for rest-service too.
We did not manage to collect everything together for 2 days of studying the documentation. In short, we are already really confused)
We need a
step-by-step plan, with links to the documentation, for example:
1. Expand the rest-service, do this and that and that
2. Create a project with reports, do so and so
3. Configure the service to work with reports, do that, and that, and that
4. Connect all this to the MVC with help of this and this
5. The created object is transferred to the report that way and that way
Thanks to everyone who can help.
In the past it was possible to add a "values data table" below a chart that would align with the graphical chart series above
This is what I am talking about: http://docs.telerik.com/reporting/understandingwizardvalues
Is there a way to reproduce this functionality in the new Graph control?
@
using
Telerik.ReportViewer.Mvc
@(Html.TelerikReporting().ReportViewer()
.Id(
"reportViewer1"
)
.ServiceUrl(
"/api/reports/"
)
.TemplateUrl(
"/ReportViewer/templates/telerikReportViewerTemplate.html"
)
.ReportSource(
new
Telerik.Reporting.TypeReportSource() { TypeName =
"ReportClassLib.Report2, ReportClassLib"
})
.ViewMode(Telerik.ReportViewer.Mvc.ViewModes.INTERACTIVE)
.ScaleMode(Telerik.ReportViewer.Mvc.ScaleModes.SPECIFIC)
.Scale(1.0)
.PersistSession(
true
)
Hi,
I have a stored procedure when executed generates a record of 42000+. (Using Stand Alone Report Designer) calling the trdx in the UI - report viewer I have no problem, it generates successfully in 2 mins compose of 1500+ pages.
The problem is when I tried to export it into excel. it lags and it cannot successfully export the file.
I wonder if anyone can help me about this. Thank you.
Regards,
Von