I finally figured out that I can transfer any Telerik design in Clipboard:
IDataObject dataObject = Clipboard.GetDataObject();
if (dataObject.GetDataPresent("CF_TELERIK_REPORTING_NET20"))
{
var services = new ServiceCollection();
ServiceProvider provider = services.BuildServiceProvider();
//IServiceProvider provider = new DefaultServiceProviderFactory().CreateServiceProvider(services);
byte[] data = (byte[])dataObject.GetData("CF_TELERIK_REPORTING_NET20");
var service = new CodeDomComponentSerializationService(provider);
using (var stream = new MemoryStream(data))
using (SerializationStore store = service.LoadStore(stream))
{
//using var store = (CodeDomSerializationStore)service.LoadStore(stream);
var components = service.Deserialize(store);
store.GetType();
}
}
I have a report that I'm viewing in a WPF app. The report looks perfect on-screen and when I export to PDF. However, when I export to "Word Document", there are a few fields that simply don't show up in the Word document. There is also, in the page footer, a horizontal line that comes out as just a partial line, and footer text that doesn't appear at all.
Are there any pointers or suggestions to get these working?
We have a longer text in our report, which also contains this string "ISO 5834-1:2019", which we don't want to break into a new line.
Reporting Services seem to have the possibility to use the chr()-function to inject 'unbreakable' characters, but this doesn't seem to work in Telerik Reports.
How can we make sure, that there is no line break possible for the given string?
(Line break in the rest of the text is ok, though.)
Hi support team.
I go back to you on this subject because I have a problem as below:
I'm using Telerik Report Designer Standalone for making my report template.
In fact, I have 2 series: 1 barserie and 1 lineserie. In Line serie, I can make any style of DataPointLabel without any problem. However in bar serie, I want to change the color of DataPointLabel as below but it doesn't take in affect, please help me to resolve it
Currently we're using a pictureBox as a Watermark, but this only shows on the first page of the record.
We also created a binding to show/hide the image.
When using a real Watermark it is correctly displayed on every page, but we cannot add a binding to conditionally show/hide it.
How can we implement a Watermark that both is displayed on every page, but also is only shown on a specific condition?
Kind regards.
I'm trying to generate a report in my Blazor application.
What I’ve done so far:
.trdp
file and embedded it into my Blazor project.Now here's what I want to do:
.trdp
report.
Problem's Summary :
Section Formula information lost after Crystal report to Telerik report conversion
What has been done :
I have converted a Crystal report having multiple sections , each section has its own background color controlled by Formula :Also I have used formula to control data formatting (color) in the original Crystal Report.
After I have used the convert it to Telerik Report.
I found that the formula is missing in the converted Telerik Report, there is no any coloring effect in new report.
My Question is : does the Telerik Crystal Report Converison tools support Formula conversion ?
Thank you
Im getting the "single-row subquery returns more than one row" error when using a stored procedure as a datasource.
This is the beginning of the procedure that I am calling from the report:
create or replace PROCEDURE get_idoc_report (
pStart_Date IN DATE,
pEnd_Date IN DATE,
pPrepMethod IN VARCHAR2,
pAnalyticalMethod IN VARCHAR2,
pInstru IN VARCHAR2,
pMatrix IN VARCHAR2,
pPrepAnalyst IN VARCHAR2,
pAnalyticalAnalyst IN VARCHAR2,
pWO IN NUMBER,
pWO_ID IN VARCHAR2,
pAR IN VARCHAR2,
p_cursor OUT SYS_REFCURSOR
)
IS
BEGIN
OPEN p_cursor FOR
select distinct
to_char(sysdate, 'MM/DD/YYYY') as Current_Date,
to_char(pStart_Date, 'MM/DD/YYYY') as WO_Start, ......
I have run the procedure in SQL Developer using a record to get data from the cursor, and it returns the expected number of data rows. I have used the same query as a Text select datasource query in Telerik and it worked. Any idea why I am getting the "single-row subquery returns more than one row" ? I am thinking Telerik Standalone is not able to access the rows returned from the sys_refcursor output. Any help is appreciated. I have attached the procedure text and a screenshot of the datasource setup.
Using Telerik Report Designer Version 17.1.23.606 and Oracle Database 19C.