Hello,
I am using Telerik Reporting R3 2016 and generating some clustered bar chart. I need to increase gap between each item in grouped bars. I have attached screenshot, please refer. Is that possible to increase gap between grouped bars?
I am trying to create a report that has justified text and has portions of the text underlined. I'm using an HtmlTextBox and can set the properties to justify the text and underline portions of it. However, it displays the underline by underlining each word separately, leaving a space between the lines. Is there any way to force the underline to be one continuous line when using justified text?
Thanks!
From other forum posts it seems we cannot add multiple detail sections. I am wondering how to accomplish the following task. (pictures attached)
Dataset is preformatted, and can't easily change. Currently, the section headers are just treated as inline text in column 1, and background color for all cells is changed to black based off of a formatting field provided in the data. This works great (Existing.PNG).
I received a request that they want to extend the text beyond the width of column 1 and center it. (Proposed.PNG)
Ideally, if I could have a second detail section, I could have a formatted textbox that spans the columns, and another detail section with the spreadsheet type cells. I would then use conditional formatting to hide visibility.
Short of being able to have a second detail section, how could I perform this task with Telerik Reporting?
I am attempting to build a formatting rule to hide a row in my table.
=iif(isnull(Fields.PODetails_Comment,"")="",1,0)
My data will have null and '' (MSSQL). When running the report, it appears to work most times and others it does not.
I went as far as doing it in SQL "Case when isnull(podetails.comments,'') = '' then 1 else 0 end" then modified the expression in the conditional format to use that new field from SQL...same result.
I finally did a LEN() on the field:
=IIF(Len(fields.PODetails_Comment)>0,0,1)
Again, in most cases, the report looks fine. However, once in a while it will show the row when it should not.
Ideas?
I had an old Silverlight Project which I am trying to upgrade.
I did upgrade the reports using the Upgrade Wizard from Telerik.
Now I am using HTML Report Viewer to display the reports.
The report and parameters are being set from the client side using java script for which I followed https://docs.telerik.com/reporting/html5-report-viewer-howto-custom-parameters
I can see the parameters being passed from the console and in the report viewer but the parameters are not being received by the Stored Procedure. The stored procedure gets the parameter values as NULL.
Unable to figure out why it is happening like this.
Thanks
Could you tell me why when I create a new text box in the "detail_ItemDataBinding" method (for each row) ... this new text box is only created in the second row (and in the third row, and in fourth ... but never in the first) ...? I can not create any new text boxes in the first row ... It's the same code for each row
Why it happens?
Thanks
Hi,
I am using HTML5 Telerik Report Viewer for my MVC 5 Project and using Stored Procedures to fetch the data. Its pretty awesome.
The only issue I am facing is, I cannot use the column names exactly returned by my stored procedure. The pattern is following:
If a user select February from the options, report should show:
Sr. No February Name
1 15 xyz
2 30 abc
but if user select December, it should show the following:
Sr. No December Name
1 15 xyz
2 30 abc
I cannot make the columns dynamic. My stored procedure can return dynamic column name (using pivot). Can you please help me out? I am unable to find such a solution on your forums and/or stackoverflow. Please keep in mind that I am using MVC 5 HTML 5 Report Viewer with stored procedures.
Thanks alot
I want change or set a new sorting in telerik reporting 2016 r3 in code behind.I am using silverlight.
I cannot to update or set the new sorting. It does not work?
I tried to use below code in need_datasource (before or after datasource assignning) but does not effect.
Telerik.Reporting.Sorting sorting1 = new Telerik.Reporting.Sorting();
sorting1.Expression = "=Fields.MyField";
sorting1.Direction = Telerik.Reporting.SortDirection.Asc;
this.report.Sortings.Add(sorting1);
or by direct assigning :
this.report.Sortings.Add(new instance with new expression and direction);
Does not work!