Telerik Forums
Reporting Forum
0 answers
259 views

Back in the glory days of WebForms, the Telerik report designer lived in Visual Studio. This was fabulous.

Haven't had to write a report for a few years, but now a new batch is needed. Can't find my trusty report class in the Add New Item... dialogue.

I see there's an old-style report designer app which looks like Crystal Reports from 1998: has the trusty VS designer gone?

PH
Top achievements
Rank 2
 asked on 09 Sep 2021
4 answers
307 views
Is there a way to generate a Trend Line on a bar chart?

My graph at the moment shows All Events as a stacked bar chart, and I want a trend line to appear also, but can't see how to create one :o
Tommy
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 09 Sep 2021
0 answers
254 views

I would like to hide the "Column3" column and the "Column3" row based on the value of a report parameter.  I can't seem to figure out how to do this with conditional formatting as you can't apply that to a whole column or row in a crosstab.  Can this be done?


1 answer
83 views

Hi guys, i'm trying to use report server but there is something wrong.

Follow the images:

 

 

This occours when i try to render my report.

The header and the other text are okay, they are rendering.

The other images will show the configuration based on a webServerDataSource.

 

my report.

 

my data

 

my data configuration and i get the my json with the value.

 

the value of the property that i want

 

the data source from my webServiceData.

Neli
Telerik team
 answered on 06 Sep 2021
1 answer
116 views

Hye,

 

I got problem with export report book to pdf.

here is my code

class TestPart : Report1
    {
        public TestPart()
        {
            this.DocumentMapText = "Sales By Region";
        }
    }


Telerik.Reporting.ReportBook ourBook = new Telerik.Reporting.ReportBook();

            var tocReportSource = new TypeReportSource();
            tocReportSource.TypeName = typeof(ReportBookToc).AssemblyQualifiedName;
            ourBook.TocReportSource = tocReportSource;

            ourBook.ReportSources.Add(new TypeReportSource
            {
                TypeName = typeof(TestPart).AssemblyQualifiedName
            });

            Telerik.Reporting.Processing.ReportProcessor rProc = new Telerik.Reporting.Processing.ReportProcessor();
            Telerik.Reporting.InstanceReportSource irs = new Telerik.Reporting.InstanceReportSource();
            System.Collections.Hashtable dinfo = new System.Collections.Hashtable();
            irs.ReportDocument = ourBook;

            Telerik.Reporting.Processing.RenderingResult result = rProc.RenderReport("PDF", irs, dinfo);

            string fileName = result.DocumentName + "." + result.Extension;
            string path = System.IO.Path.GetTempPath();
            string filePath = System.IO.Path.Combine(path, fileName);
            
            using (System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Create))
            {
                fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
                fs.Close();
            }

the problem is TOC is empty.

here is result

Neli
Telerik team
 answered on 06 Sep 2021
1 answer
164 views

Hi everyone, I'd appreciate any input on the following problem:

I have a crosstab with "sales period" as column group, and the detail value is sum of sales.

my report structure is pretty much identical to this demo: https://demos.telerik.com/reporting/product-sales

the only difference is that I will only compare 2 periods, and never more. that should make things hopefully easier. (in other words: a 'SELECT DISTINCT period' on the datasource will always return 2 values.)

Now I would like to show a sales index by comparing period1 to period2 in an additional column.

how can I do that?

 

Faye
Top achievements
Rank 1
Iron
 answered on 04 Sep 2021
0 answers
79 views

I am facing a problem with report viewer, the pagination on report does not seem to work correctly although it shows all pages in Pagination section of report viewer but by click on next page does not seem to work and it shows all pages on every page. Please see the attach screenshot.

What the correct result for me is to show each page when I click on next page button not all pages.

abdul
Top achievements
Rank 1
 updated question on 31 Aug 2021
1 answer
97 views

I have created the following report it is not clear to see what id is which part of  the donut chart. 

I am not able to find how to make it clearer either by label or being able to created series label at the bottom of the report something like the following.

 

Dimitar
Telerik team
 answered on 31 Aug 2021
1 answer
320 views

I would like to create a pie chart in a pivot as mentioned in the following Article:

 

https://www.telerik.com/blogs/impress-users-with-new-visualizations-in-telerik-reporting-q1-2013

 

I am on report designer 2016 R3 but however i am not sure how to set this up correctly. I currently have the following output but i would like this to be broken down to by each campaign, meaning we will get a pie chat for each campaign instead of the total.

i have used crosstab table with the pie chat within them.

Dimitar
Telerik team
 answered on 31 Aug 2021
1 answer
323 views

I have a stacked bar chart in a cell in my table and I'm trying to rip as much out and make it as compact as possible... I have set the PlotAreaStyle background colour to be yellow in my screenshot below... How can I completely remove this space and make my chart more compact in the cell?

Todor
Telerik team
 answered on 30 Aug 2021
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?