Is it possible to have asymmetric margins on a report? That is, the left margin of the odd pages must be greater than the right, and the right margin of the even pages must be greater than the left margin. This is because the report will print on both sides of the sheet, with a long margin on both sides. This long margin will serve to physically file the document.
Maybe this capability is already present, but, I am unable to find it. When text overflows a text box and the text box is not allowed to grow, I need to be able to show an ellipsis or the remainder of the text that can fit. Currently the report removes all words that can not fit in the given area.
It would be very helpful if we could set a few overflow options like "ellipsis", "truncate" (default), or "clip". Example
A colleague sent me a trdx report file. Upon opening in the Report Designer (both of us are using 15.1.21.512) one of the images, sized to fit within the picturebox, was enlarged and no longer fits within the box.
We rechecked that we were using the same trdx and we are. The image shows properly on her PC but is cut off on mine (and is cut off when the report is rendered in the application).
Another odd thing is that a different image in another picturebox is unchanged.
Hi,
I have created a cross tab report with Snowflake ODBC as a data source and it works perfectly fine in Telerik Report Designer, when I click on preview I could see the data being fetched from my snowflake database.
I have snowflake DSN setup on my machine with name "SFDevAdmin"
But when I host it in .Net 5 as REST API and trying to render it in HTML I get connection error I think I need to specify the connection string in my asp.net application and I did it like this in my appsettings.json
"connectionStrings": {
"SFODBC": "Data Source=SFDevAdmin"
}
but I am getting below error
Could you please help me on this to make odbc connection work when hosted in asp.net 5 application
I would like to add make a text bold , in preview mode of Telerik report designer works correctly but when I call the report in C# code to use it , I can't see any change and the bold style won't be applicable in C# application .
What's the reason??
I have a data source that contains dimension data. This data contains Width, Diameter, Weight, and other data.
I can filter the list to just show the Width, but I only want it to show the first Width (since they all happen to be the same). The Report Designer still creates a blank row in the report for every row after the first. I tried using
= IIf(RowNumber()=1, Fields.DimensionInfo.Dimension, "")
How can I only show the first item? Or, how can I force the blank rows to not take any space?
Thanks!