How do I get the mirror of text to print on a report? I need the text to look normal when holding it up to a mirror.
Thank you.
How could I change DateTime parameter format?
How could I change Preview button text?
I am use telerik-report-viewer in Angular project.
Hello
I'm sorry to ask you this question because it's very simple.
When I set A3 in pageSettings and print, A4 size is the default setting, not A3 size.
How do I set up that part?

Hi Team,
Please refer attached screenshot. I am trying to create CrossTab table with One column as Column Grouping.
Now It will look like below image -
Now I am trying see preview. It looks like -
It's showing System.Object[] with just one row. (actually, it's has multiple rows with one batch name (grouping field)
Please help me to resolve the issue. as soon as possible.
Thank you.


Hi
I am getting this error when i load a report in designer
Could not load file or assembly 'Telerik.Reporting.Design.Interfaces,
Version=6.0.12.215, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' or one of
its dependencies. The system cannot find the file specified.
I have attached the screenshot for this error
Can you please help me figure this issue..

Hello team
Good afternoon! Is there any settings to have zero line in center of the visual, attached visual has all -ve % for items
I am looking for property that helps to align bars from center of the visual , not from top

Hi,
I need to make a report with several PNG images and generate a PNG file with transparency in a Winforms application.
So I made a report with the background 'Transparent' and some PictureBox.
this.Style.BackgroundColor = System.Drawing.Color.Transparent;
this.detail.Style.BackgroundColor = System.Drawing.Color.Transparent;
Then I export to PNG with Telerik ReportProcessor and RenderingResult.
But the background is white. :-(
How can I export this report with transparent background ?
Thanks
Frederic

i'm following this example: https://docs.telerik.com/reporting/embedding-reports/program-the-report-definition/access-report-items-programmatically
when it comes to this:
protected void Button1_Click(object sender, EventArgs e)
{
Telerik.Reporting.InstanceReportSource instanceReportSource = (Telerik.Reporting.InstanceReportSource)this.reportViewer1.ReportSource;
Telerik.Reporting.Report report = (Telerik.Reporting.Report)instanceReportSource.ReportDocument;
Telerik.Reporting.TextBox txt = report.Items.Find("productNameDataTextBox", true)[0] as Telerik.Reporting.TextBox;
}but in my situation I have a UriReportSource,
how can i get InstanceReportSource from a UriReportSource?