Telerik Forums
Reporting Forum
2 answers
57 views
I use VB 2008... telerik report Q1 2013 trail....
when i drog a shape to report  ...... the visual studio crash right now..
if i click a shape already in a rerport.... crash crash!!!!! 
so ................... this is a big bug~~
Stef
Telerik team
 answered on 18 Apr 2013
1 answer
49 views

Using Silverlight, I can show a simple telerik report passing parm using code like below.  What I need to do is generate the same report for a different list of subjects.  I need to be able to print them all at the same time.  I was going to try to use a report book for this.  Would this make sense in the situation?  How do I add/pass all the parameters to the report book?  I'm guessing I would need to pass all the parameters plus the list of subjects and then in the report book, programatically loop through the subjects and add a new report for each one?

public FormLetterBasicReportViewerView()
       {
           InitializeComponent();
 
           reportViewer1.RenderBegin += new RenderBeginEventHandler(reportViewer1_RenderBegin);
       }
 
 
       void reportViewer1_RenderBegin(object sender, RenderBeginEventArgs args)
       {
           args.ParameterValues["LetterDate"] = CurrentViewModel.FormLetterInformation.LetterDate;
           args.ParameterValues["Greeting"] = CurrentViewModel.FormLetterInformation.Greeting;
           args.ParameterValues["ReplyToName"] = CurrentViewModel.FormLetterInformation.ReplyToName;
           args.ParameterValues["ReplyToAddress"] = CurrentViewModel.FormLetterInformation.ReplyToAddress;
           args.ParameterValues["ReplyToPhoneNumber"] = CurrentViewModel.FormLetterInformation.ReplyToPhoneNumber;
           args.ParameterValues["MailToName"] = CurrentViewModel.FormLetterInformation.MailToName;
           args.ParameterValues["MailToAddress"] = CurrentViewModel.FormLetterInformation.MailToAddress;
           args.ParameterValues["Re"] = CurrentViewModel.FormLetterInformation.Re;
           args.ParameterValues["Paragraphs"] = string.Join("\n\n", CurrentViewModel.FormLetterInformation.Paragraphs);

                ...
IvanY
Telerik team
 answered on 18 Apr 2013
1 answer
210 views
Is this documented anywhere? A lot of forum posts make reference to this, but I haven't been able to find it in the documentation.
IvanY
Telerik team
 answered on 18 Apr 2013
1 answer
85 views
How can you change the chart type for the new graph object through the Visual Studio designer?  Your documentation only show how to change through the standalone report designer. 

Thanks
Chavdar
Telerik team
 answered on 18 Apr 2013
1 answer
110 views

Hi,

 I'm using Telerik report. How could i set vertical column line in report

See my report image

Advance & Thanks

Ansari.
Stef
Telerik team
 answered on 17 Apr 2013
1 answer
81 views
Using version 7.0.13.220. Have created a barebones ASPX based on the sample code from the 'Using Telerik Web ReportViewer in ASP.NET MVC application' and the response from here.
<html style="height: 100%">
<head id="Head1" runat="server"></head>
<body style="height: 100%">
<form id="Form1" runat="server" style="height: 100%" method="post" action="">
<div id="Content1" style="border: solid 2px red; height: 100%;">
<telerik:ReportViewer ID="ReportViewer1" runat="server" Height="100%" Width="100%"></telerik:ReportViewer>
</div>
</form>
</body>
</html>

Also using the report from the sample code mentioned earlier.

When I view the page in IE9, I get the grey menu bar across the top of the screen and nothing else. I can then export it to other formats (PDF, Word, etc.) and the report shows correctly. If I look at the report in Chrome or Firefox, the report shows correctly in the browser and exports. Any idea what's holding up IE?

Chavdar
Telerik team
 answered on 17 Apr 2013
1 answer
86 views
Hello,

I'm working with a bar chart, and am having an issue with the ChartSeries labels.  It appears that the labels are constrained to the inner Chart, and are not allowed to extend out into the rest of the PlotArea.  The attached file "telerik chart labels 1.jpg" shows my desired behavior (taken from an existing report written using a different tool) - notice that the labels for TX and NM extend outside of the inner chart area.   "telerik chart labels 2.jpg" shows the results using Telerik Reporting.  Here you see that TX and NM are constrained to the inner Chart rectangle.

Is there a setting somewhere that would allow me to achieve the desired behavior?  I have searched extensively on these forums and on Google, StackOverflow, etc., to no avail.

Thanks!

Scott
Chavdar
Telerik team
 answered on 17 Apr 2013
5 answers
867 views
Why can't I add a subreport to the page footer?

I have a need to make the page footers on all my reports the same, so I want to create a subreport and pass in the pagenumber\pagecount as parameters.

When I try to add the subreport in vs2012 it throws a popup saying this isn't possible?
Chavdar
Telerik team
 answered on 17 Apr 2013
3 answers
117 views
Hi,

I am using WPF report viewer. I have one report which contains 10 rows. I want to click on the cell(textbox) & execute the method.

Thanks
Vaibhav
Peter
Telerik team
 answered on 17 Apr 2013
4 answers
442 views
Hi All - I know there have been other threads on this but OIY! this problem is a pain.  I am trying to get a grip on the issue with passing incorrect datatypes to user defined functions thus generating this error.

I have a simple test function

 

 

public static decimal hellodecimal(decimal arg1) { return arg1; }

 


doesnt get any more simple eh?

When I call this function from the detail section on a report it works well

=hellodecimal(Fields.SomeDecimalField)

BUT

If I call this from a group section and include an aggregate function, like ...

=hellodecimal(Sum(Fields.SomeDecimalField))

THEN I get the error  "The expression contains undefined function call hellodecimal()"

So it seems like "=Fields.SomeDecimalField"  and "=Sum(Fields.SomeDecimalField)" return different data types, is this true?
Joie
Top achievements
Rank 1
 answered on 17 Apr 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?