Telerik Forums
Reporting Forum
2 answers
68 views
So I have a specific image that will load into a picturebox when I run the reportviewer locally, but it doesn't work when it's deployed.

All the other images work fine, using the same loading method.  All other images of this category work for all other items.  It's just this one image, that only works locally, but not from the webserver.

The image is not displayed, but I am displaying some of it's attributes, and it's saying the image is a jpeg, that is 808x1049 pixels wide.

Anyone ever encounter an issue like this?

Thanks!
Stef
Telerik team
 answered on 01 Apr 2015
1 answer
114 views
I'm standing generate the report in PDF and e-mail, but when will render the following error appears:

Failure in transparent security method 'Telerik.Reporting.Pdf.Fonts.TrueType.FontReader.GetFontData(System.Drawing.Font, Boolean ByRef)'  when calling native code by the method 'Telerik.Reporting.Pdf.Native.NativeMethods.GetDC(IntPtr)'. Methods must be safety-critical or critical to safety and available in transparent code to call native code. I'm using Telerik Reporting Q1 2015 version.
Stef
Telerik team
 answered on 30 Mar 2015
2 answers
106 views
Hello there,

I'm evaluating Telerik Reporting and I'm struggling with something that I know how to do in SSRS but I have no idea how to achieve it here.

I'm using a line chart to show patient admissions trends for the last 6 months by payor type.

Issues:

1) I'm using Analysis Services as my data source, when I chose month as my category group, the months are sorted alphabetically. In SSRS I can reset the sort, and they will show in calendar order by default, but it seems that is not an option here. 
I tried providing a user function for both grouping and sorting; but it doesn't seem to work.

2) How can I handle empty values? I want empty values to be shown as "0". I found this http://www.telerik.com/help/reporting/featuresemptyvalues.html but I can't find where to set the EmptyValue properties nor how to get to the ChartSeriesCollection properties.

Thanks in advance!
R.
Hinata
Top achievements
Rank 1
 answered on 30 Mar 2015
1 answer
268 views
I am trying to convert report from Active Report to Mailing Label Report. I have done the steps in the post called "Converting reports from ActiveReports"
http://www.telerik.com/support/kb/reporting/details/converting-reports-from-activereports but I am not getting "Convert from existing report" after adding a report to my project.

The version of Reporting is Q1 2015.
Stef
Telerik team
 answered on 30 Mar 2015
1 answer
186 views
Can I embed the Query Designer from he Standalone designer in my own application? Is there a tutorial on how to do that?

Thanks!
Nasko
Telerik team
 answered on 27 Mar 2015
3 answers
210 views
Hi,
I'm developing reports on StandAlone Report designer. The report consists to get all users from DB and show them in a list. I read how to create custom functions in order to transform users images that is as string64 in DB to Image in PictureBox. In this case, it's work very well.
So, then i decided to test on my Silverlight application. Configure web.config on my project as well but it didn't work. I follow this example this example in this same report and it works fine but the images does not show.

What i'm doing wrong?
Stef
Telerik team
 answered on 27 Mar 2015
1 answer
124 views
I'm trying to add a drill down action as explained in http://www.telerik.com/help/reporting/designing-reports-interactivity-how-to-add-drilldown-action.html to a the ProductCatalog report from Examples catalog but it works incorrect. I've added a toggle visibility action to Fields.ProductCategory, toggle target is ProductSubCategory. When click to a category all Categories expand/unexpand instead of expanding/unexpanding the selected Categories.
It works correct in 2014 though.
Nasko
Telerik team
 answered on 27 Mar 2015
1 answer
459 views
Hi all

I have never used the Telerik reporting before and I am simply trying to get it to display one of the default reports (or even a custom one I made with just a text box on it). I am using ASP.NET MVC

I followed the tutorial here: http://www.telerik.com/help/reporting/mvc-report-viewer-extension-embedding.html

And I am just left with a blank screen.

The source shows the div there called reportViewer1 and there are no errors in the javascript console so I am at a loss.

Any help appreciated.

Thanks
Nasko
Telerik team
 answered on 26 Mar 2015
3 answers
347 views
I have stacked bar graph that has a category group based on a description and the series group based on a percentage. What I want to achieve is the following:

I want the description left-justified on each individual bar and the percentage right-justified on the that same bar. Is this possible? Could you please give me an example of how one would we doing this?
Nasko
Telerik team
 answered on 26 Mar 2015
1 answer
418 views
I am currently designing a reference implementation for the incorporation of Telerik Reporting into both our Desktop and Web clients.

The design goals for us are:
Provide design time support for both the Visual Studio Designer and the StandAlone Designer, including working sample data.
Allow the runtime application to retrieve the data async from our Rest based backend.
Only use Business Objects types for the design time experience.


So i started out creating a sample Datasource that has a constructor without parameters and constructor with parameters. The thought process was that the default constructor would pump out static data to enable design time support and the version with the constructor would use the version with parameters which i could inject during runtime to support async loading before the datasource is created.

The first report I created is a simple table report listing firstname and lastname. Design time support is working as expected within visual studio so the next step was to add a reportviewer to a wpf application and start injecting real data.

At first glance everything seemed to be working fine the correct methods get called by report and report is rendering ok, what is not ok is that the reportviewer actually re-initiliazes the datasource therefore going back to the original version with static data after i've bound it to an actual reportviewer. Behauviour is that i get one call to the correct datasource, and after that one the object is recreated and goes to static data.

I assume this is due an error on my part. Please look at the code where i initialize the reportviewer.

List<TestPerson> TestPersons = new List<TestPerson>();
TestPersons.Add(new TestPerson
{
FirstName = "Mikey",
LastName = "Mouse"
});


var typeReportSource = new Telerik.Reporting.TypeReportSource();
typeReportSource.TypeName = "ReportLibrary.Report1, Reportlibrary";
Telerik.Reporting.ObjectDataSource objectDataSource = new Telerik.Reporting.ObjectDataSource();
objectDataSource.DataSource = new SampleDatasource.tempdatasource(TestPersons);
objectDataSource.DataMember = "GetData"; // Specifying the name of the data object method

Telerik.Reporting.Report report = new ReportLibrary1.Report1();
report.DataSource = objectDataSource;
Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
reportSource.ReportDocument = report;
ReportViewer.ReportSource = reportSource;



ReportViewer.RefreshReport();
ReportViewer.RefreshData();


Or look at the complete attached solution.
Bernard
Top achievements
Rank 1
 answered on 26 Mar 2015
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?