Hi all,
I have the next question, I have a report who need the details group in the left side and the group of the other fields on the right
Thats is possible using crosstab?
Thanks

I have imported a dataset.
' Creating and configuring the ObjectDataSource component:
Dim objectDataSource As New Telerik.Reporting.ObjectDataSource()
objectDataSource.DataSource = GetData() ' GetData returns a DataTable
I have already drawn up a report with the appropriate dataset.
Dim clientReportSource As New Telerik.ReportViewer.Html5.WebForms.ReportSource
clientReportSource.IdentifierType = Telerik.ReportViewer.Html5.WebForms.IdentifierType.TypeReportSource
clientReportSource.Identifier = "report2.trdp"
reportViewer1.ReportSource = clientReportSource
I do not know how to connect the dataset I imported to the report source.
-------------------
Fix my source Thanks ^^;
-------------------
What I want is simple
1. Create the dataset I want.
2. Draw a report that has a field in the dataset.
3. Display it.
I finished 1 GetData() , I finished 2. ( "report2.trdp" )
Now you need to concatenate and display the data as in # 3.
But I did not solve it.
Good afternoon,
I purchased and loaded Reporting today to produce some reports based on our current web application. The first chart I need has an x-axis comprising seconds from the start of a session. The chart shows metrics from an exercise session. I need to change the second values to minutes, but not lose any of the points.
In my web page I have used the following in the markup:
<XAxis>
<LabelsAppearance >
<ClientTemplate>
#= kendo.format(\'{0:N0}\', value / 60)#
</ClientTemplate>
</LabelsAppearance>
<TitleAppearance Text="Minutes" />
My question is how to achieve this in Reporting? I can find the format builder, but this does not seem to allow expressions.
Thank you
Fiddler v5.0.20173.50948 unable to start properly on my PC with Windows 10 (Fall Creators Update installed). When I am opening Fiddler, I always get a message: "Failed to register Fiddler as the system proxy." And this is the very big problem, because I am using Fiddler all the time. Why is not working? Is it because of Fall Creators Windows10 Update?
I also saw that service "Web WinHTTP" is not working and I cannot start it because I get message: "access denied" or "1067 error".
When I edit the reg to force start "Web WinHTTP" service and restart the PC, I don't have internet connection at all and my PC is working unstable, programs are crashing or opening very long... why is that happening? How can I fix it?
I am waiting for advices,
Best Regards,
Matthew
Hi All,
I just want to use comma as thousand seperator as
Example : 1,555,555.99 I'm using this format (#,##0.00) but it shows numbers as 1.555.555,99
Do you have any sugession?
Thanks

Hi,
So in our app we have a WCF Web Service that is used for all of our business logic. We use WPF as our frontend. The issue we are running into is trying to send a report that is created on the backend to the WPF frontend app using the service contracts through WCF. Normally we have to add a DataContract attribute to let the service know that it needs to serialize an object. When we try to do this with a telerik report it breaks and does not let us receive the report on the frontend. We have even tried creating a class just for the one report property and it still won't send it. We have tried sending the report as IReportDocument, ReportBook, and InstanceReportSource and none of these work.
Hello,
How can Angular Report Viewer be localized? I found only this article - https://docs.telerik.com/reporting/html5-report-viewer-localization. But Angular Report Viewer doesn't expose telerikReportViewer variable to the global scope or as module export. Only the ReportViewer constructor function is exported (from telerikReportViewer.js):
module.exports = {
ReportViewer: telerikReportViewer.ReportViewer
};
And I don't see any way to get access to telerikReportViewer.sr object from application code.

Hello,
I've just updated to Reporting R3 2018 and I now have an exception when generating a PDF from a report, when a ReportProcessor instance is created. The exception message is the following:
[A]Telerik.Reporting.Configuration.ReportingConfigurationSection cannot be cast to [B]Telerik.Reporting.Configuration.ReportingConfigurationSection. Type A originates from 'Telerik.Reporting, Version=12.1.18.620, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' in the context 'Default' at location 'C:\Temp\Temporary ASP.NET Files\vs\293ea1ac\b0f39161\assembly\dl3\a336f798\0099b611_b108d401\Telerik.Reporting.dll'. Type B originates from 'Telerik.Reporting, Version=12.2.18.912, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' in the context 'Default' at location 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Telerik.Reporting\v4.0_12.2.18.912__a9d7983dfcc261be\Telerik.Reporting.dll'.
Unfortunately, the release notes doesn't say anything about a change on this.
Can you please explain what needs to be done to make it work again?
I have a sql datasource. The query creates variables such as ( declare @LastYearVal Decimal(28,12) ), and a calculated result is assigned to this variable for further processing later in the query.
When configuring the sql datasource, the parameter @LastYearVal is automatically picked up by the wizard, and I can select the type as "decimal".
Doing so will set @LastYearVal to be Decimal(29,0) at the report run time. (This i could see through the sql profiler)
Due to the variable being Decimal(29,0) instead of Decimal(28,12), it loses decimal points of the calculated result that is getting assigned to it.
Is there a way to configure the sql datasource, so that it sets the above parameter as Decimal(28,12) and can retain the decimal points correctly ?