Telerik Forums
Reporting Forum
3 answers
221 views
Is there a way to create a multi-column list in Telerik  Reporting that would emulate the layout of the asp checkboxlist?  I'd need to respond to the itemdatabound event on every item.  See the attached picture of what I would like to create..
Stef
Telerik team
 answered on 28 Jun 2016
1 answer
233 views

Hello!

How can save the Report for example the pdf file directly on the server?

I want to use the reportviewer.

Are there any suggestions?

A.Kleine

 

Stef
Telerik team
 answered on 27 Jun 2016
1 answer
683 views

Hi,

 

ObjectDataSource business.Component not connection 

 

Error !

No parameterless constructor defined for this object

Stef
Telerik team
 answered on 27 Jun 2016
1 answer
57 views

I've got a number of text fields that I'm updating dynamically in the ItemDataBound function. What I'm finding is the updates are happening on the wrong page. Specifically, the results on the first page are actually the last page's results, and everything is shifted over 1. 

 

As an example, the report has "RecordID" data bound, as a test, I am updating txtResult.Value in the "ItemDataBound" function to equal "RecordID" (txtTest.Value = section.DataObject["RecordID"]). The two text fields do not equal each other, and, as I said above, the results are shifted over by 1.

Stef
Telerik team
 answered on 27 Jun 2016
1 answer
368 views

Hi,

I'm trying to sort a bar chart by using the sorting option in Telerik.Reporting.Graph ( see the attached files) with telerik Reporting Q1 2016 in Visual studio 2015.

Actually, i added a field and then i selected a 'Desc' sorting, but it's doesn't seem to be working , the bars chart order is unchanged.

(By the way i tried to sort programatically, like the exemple : http://docs.telerik.com/reporting/data-items-how-to-add-sorting-to-report-item, without success)

Has anyone found a way to pass the sorting parameters to a chart , or a solution that would work equally?

 

Katia
Telerik team
 answered on 27 Jun 2016
1 answer
74 views

Any help or suggestion highly appreciated as I am stuck on something that should be simple to fix.

 

My application in summary has a person with properties (Name, Age, height, etc...). Also arrays of ushort or double that represent pressure waveforms. I wish to put this data onto a report for printing to PDFs.

 

I can successfully create a custom assembly and load it in the standalone ReportDesiger and it successfully fetches the data for the report for a single person. I can put the properties for the Name, Age, Height etc. on the report.

 

What I have not been able to do is present the array data in a form that can be consumed successfully by the report Graph.

 

Can someone please point me to an existing sample or suggestions on what classes I should copy the graph data into for it to then be usable in the Report Graph. I was expecting to use a scatter line graph as the Y axis doubles representing values in the range 0 to 300. The x axis is time. Some graphs are short duration (0.3 seconds), some are longer at around 10 seconds (2048 sample points).

 

A simplified model for testing purposes though might be as follows. You can see I have tried two different ways to represent the X & Y coordinates on the graph. In the final solution would only need one way, whatever that may be that makes report Graph work. 

 

public class ReportModel
    {
        public string Fullname { get; set; }

        public double[] X { get; set; }
        public double[] Y { get; set; }

        public List<Point> GraphPoints { get; set; }

        public ReportModel()
        {
            Fullname = "John Doe";
            X = new double[] { 1, 2, 3, 4, 5, 6, 7 };
            Y = new double[] { 2, 4, 6, 8, 10, 12, 14 };

            GraphPoints = new List<Point>();
            for(int i = 0; i<X.Length; i++)
            {
                Point p = new Point();
                p.X = X[i];
                p.Y = Y[i];            }
        }
    }

    public class Point
    {
        double x;
        double y;

        public double X
        {
            get
            {
                return x;
            }

            set
            {
                x = value;
            }
        }

        public double Y
        {
            get
            {
                return y;
            }

            set
            {
                y = value;
            }
        }
    }
    

 

Katia
Telerik team
 answered on 27 Jun 2016
1 answer
62 views

Hi, Team

    I export the report to PDF, the PDF support the bookmarks with Document Map Text,

   but I export to MS word, I can not find bookmarks in navigation panel,

   does support bookmarks in MS word navigation panel?

 

Thanks

Katia
Telerik team
 answered on 27 Jun 2016
4 answers
1.5K+ views
Hi,

I need the reports to pass through layers of security which has already been set up in our own BaseController and therefore I need to set the DataSource of the report programmatically.

How can I do this with your MVC report tool as well as being able to pass through parameters? Alternatively, can I change the WebAPI url so it points to our own WebAPI functions?

Thanks.
Stef
Telerik team
 answered on 27 Jun 2016
3 answers
308 views
Hello there,

I have a small issue, in that I would like to create a CSS file for my report.
I made an invoice, which will be displayed on a website and also exported and sent by the seller to his customers. Unfortunately there are some issues here:

1. since it's made out to be print-ready, the invoice itself is only about 600px wide...i would like to modify that so it will actually look good on the screen
2. i would like (seeing as I'm a web developer, very much used to working with CSS) to just apply some simple CSS rules to my invoice (i.e. fonts, colors, width, height, etc) but everytime I try to do that, nothing happens (this is the first time I've had to work with Telerik Reports...not really fammiliar with it yet)
3. if I actually manage to apply CSS to it, do I need to create some media querries for printing and exporting? or is that handled by the application itself?
Stef
Telerik team
 answered on 24 Jun 2016
1 answer
114 views

Requirements

Telerik Product and Version

Telerik Report Desinger 2016

Supported Browsers and Platforms

IE, Motzilla

Components/Widgets used (JS frameworks, etc.)

.NET Framework 4

Thank you in advance for any feedback!

I am passing a datasource that contains two datasets. On my report under Bindings on the initial report I am using the following expression to set up the datasource of the table =ReportItem.DataObject.RawData.GetValue("states",true), this recognizes dataset(0) without any problem.  Now I need to set another table to dataset(1) =ReportItem.DataObject.RawData.GetValue("snapshotObj",true), but this is not being recognized, so I am thinking that I my code is not looking at dataset(1).  How can I do this?

Stef
Telerik team
 answered on 24 Jun 2016
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?