Telerik Forums
Reporting Forum
1 answer
155 views
Hello Telerik Forums - 

In the detail section of my report I have an image as the first column and four textboxes to the right.  I am using a field in the dataset to control the image.visible via bindings.  In the rows where image.visible = false now all controls in that row are shifted left to occupy the space where the image was.  How do I get the columns to line regardless of whether the image is visible or not? 

Image included shows the Design and Preview views.

Thanks
Happy New Year!!
Stef
Telerik team
 answered on 01 Jan 2015
3 answers
412 views
Hi,

How to show Zoom Percentage Selection in ReportViewer WebForms Q3 2014? There is a property ShowZoomSelect but it is now deprecated. So what is the new equivalent property for this and how to use it?

Thanks & Regards,
Rafa
Rafa
Top achievements
Rank 1
 answered on 31 Dec 2014
1 answer
76 views
Hi!

I'm trying to create a line chart report using the same data model which I use in my Kendo UI line chart. The model looks like this:

public class ChartData
{
public DateTime Date { get; set; }
public int VisitsCount { get; set; }
public int IdeasCount { get; set; }
public int CommentsCount { get; set; }
...
}

The model used by Kendo UI chart has a list of ChartData object. To create a line chart using Kendo UI I have to do something like this:

@(Html.Kendo().Chart(Model)
...
        .Series(series =>
                {
                        series.Line(model => model.VisitsCount);
                        series.Line(model => model.IdeasCount);
                        series.Line(model => model.CommentsCount);
                })
        .CategoryAxis(axis => axis.Categories(model => model.Date))
        .ValueAxis(axis => axis.Numeric())
...

How can I add a line chart in the Telerik Reporting framework to achieve the same effect? I have problems with setting it up and the only tutorial with creating a line chart with Telerik Reporting uses different data source structure (http://www.telerik.com/help/reporting/graphhowtocreatelinechart.html).

I would really appreciate your help.
Best regards,
Natalia
Natalia
Top achievements
Rank 1
 answered on 30 Dec 2014
2 answers
283 views
Hi~
I am using the thermal printer.
However i can not control the height of paper, because it is flxible.

 How can i set up my print and how can i control the  height of paper?

Please let me know?

Thank you
Stef
Telerik team
 answered on 30 Dec 2014
1 answer
316 views
Hye.

i use MVC (Html5) to call the report. how to call the service for binding the report?
mean example
html5 call webapi
http://xxxxxx/api/reports/getCompany

in Webapi >
public class GetCompanyController {
public (what type need to return?) GetCompanyController(what parameter need request?)
   companyService.getCompany();
}

is it possible?

Stef
Telerik team
 answered on 25 Dec 2014
3 answers
206 views
Hi All,

I am trying to create a report book using the designer within Visual Studio because I want my report to display each table of data in a separate worksheet within a workbook in Excel. 

So Table 1 will be on Sheet 1, Table 2 on Sheet 2 etc.

The only way I know to do this is to create a Report Book.

Here are my questions:

1. Is there an easier way to do this, as I do not want to create separate reports for each table.

2. The Report Book control in my toolbox is visible, but disabled. How to enable this control if this is the only way to satisfy the requirement stated above.
Nasko
Telerik team
 answered on 25 Dec 2014
1 answer
111 views
Hi , I was trying to export report to excel file in report viewer. It looks fine , but the problem is when i tried to print it , the report cant be fitted (too large)
Anyone can tell me how to resolve this problem?
Hinata
Top achievements
Rank 1
 answered on 24 Dec 2014
1 answer
349 views
Hi,

I am trying to create a report based on report parameters, and one of these
values (integer) indicates the # of pages (not copies) the report must have.

The result should be a report with many identical pages with a single variation
on the pageHeader, which includes the PageNumber and PageCount objects (page x
of y).

The multiple-copies feature is not an option for me because the PageNumber
object will vary on each page. Which workaround may I use to achieve this functionality?

Thanks!
Hinata
Top achievements
Rank 1
 answered on 24 Dec 2014
1 answer
205 views
Hello there,

I was wondering if Telerik reporting can be able to create graphs like the one listed below.
I think the name for it is called Node graph/Tree Graph. 

http://visjs.org/examples/network/02_random_nodes.html
Hinata
Top achievements
Rank 1
 answered on 24 Dec 2014
1 answer
412 views
Good morning,

Below is the code i found from document~ I was trying to change PDF to CSV File. The problem is this method is being used in reportview or report?
Another question is what is reportName? I can pass parameters here but i dont know if it is report name here.

Thank you.

Telerik.Reporting.Processing.ReportProcessor reportProcessor =
new Telerik.Reporting.Processing.ReportProcessor();

// set any deviceInfo settings if necessary
System.Collections.Hashtable deviceInfo =
new System.Collections.Hashtable();

Telerik.Reporting.TypeReportSource typeReportSource =
new Telerik.Reporting.TypeReportSource();

// reportName is the Assembly Qualified Name of the report
typeReportSource.TypeName = reportName;

Telerik.Reporting.Processing.RenderingResult result =
reportProcessor.RenderReport("PDF", typeReportSource, deviceInfo);

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);
}
Hinata
Top achievements
Rank 1
 answered on 24 Dec 2014
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?