I need to be able to see a different MarkerType per SeriesGroup in a LineSeries on my graph. For one of the groups I want a square, for the other I want a circle. I need to be able to set this in the Standalone Designer. Unfortunately, as far as I can tell this property is not available in ConditionalFormatting anywhere nor in any Bindings but I could be overlooking it.
Is it possible to set the MarkerType to one of the built-in types for each group in a LineSeries or do I have to make wholly separate series?
I am calling a JSON Webservice that does not return a nested object if the values are null.
I am using the value of the nested object (Fields.Orders.Salesperon.Name) in a detail row of my report.
This results in an error for any rows with no salesperson: "The expression containt object 'Name' that is not defined in the current context".
Here's a sample of what's being returned from the webservice:
{ "Orders": [ { "OrderNumber": 1, "Salesperson: { "Name": "Joe Example" } }, { "OrderNumber": 2, "Salesperson: {} } }
OrderNumber 1 will print fine. The row for OrderNumber 2 will have an error box.
Screenshot from the actual report:
How can I prevent this? I've tried null checks, value binding, conditional formatting... but it all throws an error because it's trying to access the nonexistent "Name" field on a record.
I have a large library of .Net 4+ reports and I want to upgrade them in such a way that they will work in a Blazor Report Viewer.
If it is a simple report with parameters, I can convert to .trdp fine and it works. However, I have a large number of reports that are much more complex. I am used to loading them in as an InstanceReportSource in code behind (WebForms project) and doing a variety of things to them, one big one is specifying specific data sources at runtime and then loading the report.
I am finding minimal examples on how to do anything in Blazor, but I will start with this question: How do I change/specify a datasource for a report at runtime and then display the report in Blazor ReportViewer?
We have recently updated from v10 to v15 of Telerik Reporting via the Report Upgrade Wizard. Everything is looking good for all of our report files but I did notice an issue with Conditional Formatting. Conditional Formatting seemed to work intermittently across different reports. I opened one of these reports in the VS 2019 Designer and changed the formatting and saved it and it started working as it had before. When I compared the differences I noticed the precision of the drawing locations for the controls had been changed. The Conditional Formatting was the same.
This is kind of a multipart question so I apologize in advance.
1. Is there a way to force the designer files to be regenerated across all of the report files in my solution?
2. Are there any know issues with Conditional Formatting that would not allow the following code to work?
//When we are not on page 1 show this panel.
formattingRule1.Filters.Add(new Telerik.Reporting.Filter("=PageNumber", Telerik.Reporting.FilterOperator.Equal, "=1")); formattingRule1.Style.Visible = false;
Thanks,
Eric
I have a report that has a table and a graph. The graph needs to be contextually dependent on the user's interactivity with the table. When the user clicks on a cell in the table, it needs to update the value of two report parameters. This needs to cause the graph to refresh its data source, which uses those two parameters as input.
How can I accomplish this? This would be fairly easy to do if I wanted to have the graph on a separate report. Then I could set the table cells' interactivity action to "Navigate to Report" accordingly. But that's not what I want. How do I simply set the table cells' interactivity action to update the relevant report parameters?
I use the report catalog example to display all the app reports, but the problem that I need to filter them according to the subject.
is there is any way to have more than report catalog in the app.
For ex: Catalog A is for Sales would contain 3 distinct reports, B is for Billing would contain 5 reports, C is for Receivables....
Any suggestions would be appreciated.
I am not sure if this is something that you guys could address, but currently when using the ReportViewer print option, if I increase the multiple copies, it still only prints one copy.
Locally, it functions as expected. Is there any change that you guys know about I need to make to have this function within a Citrix-Hosted environment?
Hi,
I am using telerik embedded angular with standalone telerik reporting.
I am editing using the standalone telerik and then attach it to the visual studio, then display it on angular.
However, every time I edit design in the standalone telerik, I need to reattach it to the visual studio everytime.
Can someone guide me on how to make all the edits in the standalone telerik is autoupdated into the visual studio as well as angular?
Thank you.