Hello!
I have one problem with creating custom formatting for axis label of the bar chart.
I have time in Seconds (int) as Data Source for X Axis but I need to display this in format HH:MM (and HH can be more than 24).
My project with build-in csv data: https://dropmefiles.com/pWr9e
I will appreciate any help! Thanks!
Hello there!
I would like to know if it's possible to reuse all of our Q1 2016 TypeReport (.cs and .designer.cs) in a pure .net core 2.1 app? Do I to rewrite them in the TRDP format?
I read in the implemented features and limitations that :
Does that mean I can copy my report cs/designer files into a new .net core project and call them through code?
I did migrate with the upgrade wizard my .net 4.6 project but I did not manage the import the report files with the stand alone report designer. I always get an error message.
Thanks!
I am completely new to the report designer. I have a couple of questions. Here is one and I will post the other separately.
If I have a date parameter, is there a way to have it offer the user comparison operators (Is On, Between, On or After, On or Before)? Would this list be another parameter in the query? If so, is there a way to just provide a set list of strings that are not stored in the database?
Thanks,
Jennifer
Hello I have a following problem - in my web app I am using an html 5 report viewer with telerik reporting and from time to time I am encountering a following problem - picturebox control is not being loaded with image data. Attached is a screenshot with a problem.
I am loading image data as base:
[code]var bytes = Convert.FromBase64String(base64String);
using (var ms = new MemoryStream(bytes))
{
pbLogo.Value = Image.FromStream(ms);
}[/code]
I tried to search for similara problems, but none of the resolutions worked out.
Hi..
I'm using the <telerik:ReportViewer ID="ReportViewer1"
On one of my users the PRINT Icon does not PRINT, it prompts for Save As.
Same thing happens in IE and Chrome. Any ideas?
thx
Hello,
on the top of this page: https://docs.telerik.com/reporting/html5-report-viewer
I have seen a littel nice widget - a dropdown menu above the report.
I attach a screenshot of that report with a red arrow to show you which thing I mean.
It could be useful for me.
I want to load a report with other parameters and the mentioned dropdown menu above the report could be the right thing.
Depending on the choice it would be shown a report with other parameters.
Please can you show me how to implement this dropdown menu?
When I run a report via the webapi against a particular webserver, it just gets to where it's loading /api/Reports/clients/123/instances/documents/123/info indefinitely. It returns a status code of 202 Accepted, content has documentReady: false. No error or anything, it just does this indefinitely forever.
I'm using the reporting services webapi to run reports with the mvc framework. To do that I have a class which implements IReportResolver, which instantiates a InstanceReportSource and returns that in the Resolve method. I create these InstanceReportSource instances programmatically else where in the same code base, and they work fine in those instances (without the webapi).
I have a nearly identical code base with the exact same reporting implementation on another web server (Windows Server 2012, IIS 7), and there it works fine. It also works fine when I run it in Visual Studio. The environment where it does not work fine is Windows Server 2008 R2, IIS version 6.1. I am curious if upgrading the OS/IIS would fix it, but I can't do that at customer sites where this will be deployed to necessarily.
I did find originally when I ran it, it'd crash the application pool. Seemed to be a permission thing because i'm using the TEMP environment variable for file storage, but switching which account the application pool was under fixed it so it wouldn't crash, but this action happens instead.
Both webservers are setup nearly identical as far as I can tell, considering they are different versions. Unsure of where to look, if there's some underlying error or something else to be looking at. Any help is appreciated.