My application uses RadDocking. When the WPF Report Viewer is hosted in RadDocking, some Graph labels appear cut.
The problem is related to the property UseLayoutRounding="True" in the RadDocking.
The workaround is to use the following setting:
RadPane pane = new RadDocumentPane();
pane.UseLayoutRounding = false;
pane.Header = "Report";
pane.Content = reportViewer;
DocumentPaneGroup.AddItem(pane, Telerik.Windows.Controls.Docking.DockPosition.Center);
Running the report book demo in Chrome v "34.0.1847.116 m" under Windows 8 crashes the Silverlight plugin. This does however not happen under I.E 11. http://demos.telerik.com/reporting/report-book/silverlight-demo.aspx
I would like to be able to write an expression that will call a user function when the ItemDataBound event fires for the report. This would allow me to wire up the custom functionality that we have built so that the user can see the result from the preview in the designer. Currently the user has to go to a preview window in our application to see the result but if I had a way to wire the ItemDataBound event for the report then I could make it possible to see the result without leaving the designer. I thought that if you made this possible for the report it probably would make sense to enable it for all controls since they all have the the ItemDataBinding and ItemDataBound events. In my case I don't know how I could implement this any other way because it needs to run after the binding has completed for the entire report.
I want to download patch Q3_2012_SP1_v6_2_13_110 for reporting but unable to get it. I unable to find the link. could you provide link for this?
Hi Telerik! I spent lots of time investigating the following situation. For some reason the editor that I used to modify Telerik.ReportDesigner.exe.config file switched xml elements names to lowercase. ReportDesigner was not started at all in that case. Even no error message was shown. I had to explore system events logs and found that ReportDesigner.exe throwed an System.IO.FileLoadException. But still with no details. Only after hours of exploring I found the problem with xml-element names and fixed it. I think if you add .config file validation with user-friendly messages during ReportDesigner starting it will help.
Hello. I'm about a world map component. For custom map services like GeoServer or MapServer more useful to use a Web Map Service (http://ru.wikipedia.org/wiki/Web_Map_Service). Telerik Reporting supports only Tiles services like Web Map Tile Services for base maps. It would be more flexible to add WMS as a base map and as an overlay layer as well.
When using multi-child select statement like the below: SELECT ORG, C1, C2, ... FROM ( (SELECT X FROM Y WHERE Z1 = xxx AND Z2 = :param1 AND DATE BETWEEN :param2 AND :param3) C1, (SELECT X FROM Y WHERE Z1 = yyy AND Z2 = :param1 AND DATE BETWEEN :param2 AND :param3) C2, ... ) Then binding with report parameter will be like: param1 = rpt_param1 param2 = rpt_param2 param3 = rpt_param3 The an error occurred while excuting the query in the datasource wizard. Also, some time the wizard accepts the query but the preview mode will display the same error. The error is "ORA-01008 : Not all variables bound" ______________________________________ Workaround: Don't use the same query parameter in more than one child select statement. Create new datasource parameters per each select statement; then bind them all to the same report parameter. SELECT ORG, C1, C2, ... FROM ( (SELECT X FROM Y WHERE Z1 = xxx AND Z2 = :param11 AND DATE BETWEEN :param12 AND :param13) C1, (SELECT X FROM Y WHERE Z1 = yyy AND Z2 = :param21 AND DATE BETWEEN :param22 AND :param23) C2, ... ) Then binding with report parameter will be like: param11 = rpt_param1 param21 = rpt_param1 param12 = rpt_param2 param22 = rpt_param2 param13 = rpt_param3 param23 = rpt_param3 ______________________________________ Products: * Report Designer v2014.Q2 * Oracle Database 10g1, 10g2 or 12c * Oracle Client: ODTwithODAC 12.1.0.1.0 Or Less
we have the ability to conditionally display a label on the x-axis. Thereby displaying only some x-axis dates, for instance, but not all of them. Can you enhance the product to allow for the displaying of tick marks only for the values (dates in this case) displayed?
When might Telerik come out with a standalone reporting tool?
ability to lay out detail data in an accross then odwn format. i do a lot of reports with weights, sometimes 500 and i wuld like to list them accross then down not in a vertical list because sometimes there is ony 1 weight and sometimes many,. this keeps the printed report to a manageable size
For some reason the database didn't load when I installed the reporting demo. neither when I ran a repair install. I'm running MS SQL 2014 on my local workstation. Could you tell me which DB to install to run the demo reports?
i am using reporting q3 2013 and when i configure sql data source and click on query builder and gives me the error .. "error opening query builder make sure the strings are correct and database is online " my connection strings are correct and database is connected even then i am getting this error i have attached the screen shot kindly please tell me how to resolve this
i would like to suggest that if we can have Report Designer Web interface as well.
When providing custom UI in the ASP report viewer (may also include other viewers) to facilitate the selection of report parameter values, it would be useful to be able to get the available values. Currently only the definition of available values can be read from a report, there is no mechanism to actually get them without reading that definition and generating your own SQL query etc from the SQLDataSource. Resolving the values ourselves is dangerous, from a data integrity point of view. We are re-writing the mechanism to get the values which may not fully reflect the report designer’s intention as we may miss duplicating all of the functionality the report engine does when it processes available values. The reason why this would be useful is that the current report parameter UI supplied by the viewer is extremely basic and limited. For example, sometimes we may want to select values from a tree view. We may wish resolve them through a series of wizard steps. Either way, being limited to the basic UI doesn’t fit well with individual solutions. I base this request on the currently available functionality in Microsoft’s reporting service. This does currently have a function we can call for the reasons described above.
Create your own parameter syntex, and translate it to the database specific one according to the provider name. For example, MsSql uses "@" character while Oracle uses ":" to identify parameters. We need to be able to execute the same report against multi database types.
The interactive view is excellent for providing a full list of rows in a table but sadly it’s not easy to break that result into manageable pages. If, for example, we have a large table list that isn’t readily breakable into sections, the resultant large table will cause most web browsers to consume a large amount of RAM and suffer performance loss. It would seem sensible to have the ability to force a page break when the interactive page reaches a certain size. This way it would reduce the amount downloaded into sensible page sizes and ensure the browser is not overwhelmed. This would be very similar, I hope, to that already provided by the print preview mode which breaks on the print page size, all we need is that functionality for interactive pages but via a separate ‘Interactive Page Size’ property.
The attach example Test.html does not work against my service. When monitored in Fiddler I cannot see the parameters being passed on to the call? Not sure what I'm missing this was taken from online API example.