Telerik Forums
Reporting Forum
1 answer
82 views
Hi

I am using Table in Reporting.But not paging.All data showing one page.

help please
Stef
Telerik team
 answered on 17 Dec 2013
6 answers
884 views
Hello every one and Telerik,
I am working on an invoice report, containing three type of charges(accessorial, freight and miscellaneous charges ), if a specific category of charges have no data i.e the invoice doesn't contain charges in accessorial , freight or miscellaneous charge category then that section should be invisible, the report should show the other two categories. how to handle it dynamically. in some case i have no accessorial while in some case i have no freight charges. Clients wants no empty fields on the report. Any one to help ???
what is the better way to handle it? should i make sections in detail section or there is any other batter?  if sections in detail section then how to make sections in detail section.
a snapshot of the report format is attached.
Imdad Turi
Top achievements
Rank 2
 answered on 17 Dec 2013
1 answer
155 views
Hi,
i created an Report dynamically.
In the InitializeComponent Function i create a Table, Chart or an Pie. Or all.

     if (datas.PresentationType == "1")
            {
                CreateTable(datas.ResultTable);    
            }
            else if (datas.PresentationType == "2")
            {
                CreatePieAndGraph(datas);
            }
            else if (datas.PresentationType == "3")
            {
                CreateTable(datas.ResultTable);
                CreatePieAndGraph(datas);
            }

That works. But i want to have, that the Table is on one side, the pie on the next side und the graph is on next side.
Can i do this with PageBreak?
Every chart, pie or table is in the detail section of my report.

I dind´t set the location for pie, table and graph.
So it looks like:


Stef
Telerik team
 answered on 16 Dec 2013
1 answer
192 views
I wonder if someone can point me to a document that describes the reporting architecture. 

My main question has to do with the stand alone report designer and whether it needs to have direct access to the data source, or whether it operates against a webservice of some type. 

Also, is there a report server, or is the report generated on the web server?

I haven't been able to find an architectural overview type document that answers these questions.

thanks,
BOb
Stef
Telerik team
 answered on 16 Dec 2013
3 answers
130 views
Hi,
i have an Graph at Report.
But the x axis started not at 0. See Attachment.
How can i set the axis to start at zero position programically?
Nasko
Telerik team
 answered on 16 Dec 2013
1 answer
74 views
Hi,
how can i set more graphs on the Report programically?
I have a List of Data, and i want have for every Data an own graph.
This is dynamically via a for loop...because i don't now at the start how many graphs i need

something like that:
for(var i = 0; i<List.count; i++){
var graph = new Graph()
......
}

But how and where?
Nasko
Telerik team
 answered on 16 Dec 2013
1 answer
240 views
Hi,

it is quite common for our reports to have optional parameters. In the WinForms viewer, they can be left empty by checking the "null" box next to them. The HTML5 viewer on the other hand, does not provide a way to do so.
Sadly, our customers were not satisfied with the presentation of available parameter values as a list. Therefore, we extended the default parameter editors with kendo select boxes via the options object. While we can now choose to leave parameters empty on the front end, the parameter validators still require the array of available values to contain an empty entry.

Is there a way to allow empty parameters without adding null to the parameter's data source? Doing so would have side effects on our WinForms application.

Kind Regards
Axel Wilczek
Stef
Telerik team
 answered on 14 Dec 2013
1 answer
165 views
Hello,

I'm new in Telerik Reporting, and haved started to see the telerik example : CSharp.Html5Demo.

When I launch this demo, the report is not displayed, I have a white page with the toolbar, but if I export the report in PDF I have a good result.

You can see the result in the picture.

I appreciate your help.

Regards,

Laurent
Stef
Telerik team
 answered on 14 Dec 2013
1 answer
78 views
Good Day All,
Please is it possible to email a report on a click of a button. any ideas or how to do it
Thank you
KS
Top achievements
Rank 1
 answered on 14 Dec 2013
6 answers
547 views
I have an WPF app with ReportViewer in one project and in another are all the telerik reports.
Via this app, I'll be calling the report selected in the dropdown to view.
Also I have the associated reports class name in the database.
I have the following snipet and it doesn't seem to work:

using (DBEntities db = new DBEntities(DBConnection.EntityModelConnectionString()))
{
   Report report = db.Reports.FirstOrDefault(r => r.ReportID == ReportID);

   Telerik.ReportViewer.Wpf.ReportViewer _reportViewer = new Telerik.ReportViewer.Wpf.ReportViewer();
   ReportViewerPlaceholder.Content = _reportViewer;
   _reportViewer.ReportSource = new Telerik.Reporting.TypeReportSource { TypeName = report.ClassName }
}

Am I missing something? An example will be great.
Stef
Telerik team
 answered on 13 Dec 2013
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?