Telerik Forums
Reporting Forum
3 answers
103 views
Hello,
I'm trying to format chart plot area using properties windows, it allows me to change the margins and also shows the changes in the designer, however whenever i do Preview/HTMLPreview or even run the report in ReportViewer, it changes everything back to default, as if there is some parameter which is overriding the settings i'm doing in designer. I've also tried to make the PlotArea-->Appearance-->Dimensions-->AutoSIze as False. Also I made the Appearance-->Dimensions-->AutoSIze as False, however nothing is working. Please let me know if I'm doing anything wrong and how the design changes will reflect in runtime.
Steve
Telerik team
 answered on 18 Nov 2011
1 answer
217 views
I have a report with a List. The List has a Sub Report nested inside of it. The Sub Report has one Table. I set the NeedDatasource handler in the constructor of the Report with the List. So for each record in the datasource of the List, I pass a parameter to the Sub Report and load the data for the Table in the Sub report. 
   My problem is that everything is working fine in my development environment and I have tested my NeedDatasource Event handlers. When the website is moved to production I am seeing an error in the Sub Report Processing "An error has occurred while processing Table 'table1':
Object reference not set to an instance of an object." 

Is there any way to make the errors show up with a stack trace so I can figure out what is going on? Do I need to run the full Telerik Reports install on the production web server?

Any help you can provide would be great.

Sincerely, Isaac Koss.
Squall
Top achievements
Rank 1
 answered on 18 Nov 2011
5 answers
142 views
We are creating many charts.  I would like them to have a consistent look to them. 
Using a built-in skin seems like it would work, however I ran into the problems with the skin overwriting properties I manually set.  (I saw another thread regarding that issue too).
Not all the charts will be the same type (bar, pie, etc), yet I would like them to have the same series colors, backgrounds, fonts, labels.

What is the easiest way to apply a consistent look to all the graphs? 
Steve
Telerik team
 answered on 17 Nov 2011
1 answer
114 views
Can the report design in Telerik be viewed entirely in HTML or XML?
Does the report have drilldown, conditional subpress session (panel and field), and subreport features?
What are the reasons of choosing Telerik reporting model in asp.net over crystal report?
What are the advantages Telerik reporting model over SQL server reporting services?

Thanks
Peter
Telerik team
 answered on 17 Nov 2011
1 answer
198 views
I want to generate a report which is use object datasource. I passed a list of MyReports Class to Telerik.

  Structure of MyReport is: 
MyReport 
   WeekNumber 
   NumberOfSells 
   NumberOfBuys 
   TransactionVolume


I want to print report in format of :
                         Week 1        Week 2             Week 3                    Week n
NumberOfSells                         55                 50                       48                           98
NumberOfBuys                          44                 78                        59                           25
TransactionVolume                    5890              6580                   6987                      15879



How can I do this. Please help.
Elian
Telerik team
 answered on 17 Nov 2011
1 answer
92 views
i am using telerik reportviewer to display data and export it to many format i am facing a problem when the number of rows in the report is too large. the rows are too close to eachother and are such hiding eachother any way to solve this problem.
Peter
Telerik team
 answered on 17 Nov 2011
1 answer
270 views
I'm trying to exprt a simple table to csv, reduced the report to column headers and table fields only, but the output is somewhat odd:
- the column headers in csv are the names of the TestBoxes
- the rows contain fields for each fieldname and each value, looks altogether like this:

nameCaptionTextBox,valueCaptionTextBox,nameDataTextBox,valueDataTextBox
Name,Value,WebServiceModule.MpdConfigFilePath,
Name,Value,MaximumThreadCount,120
Name,Value,DeviceModule.QueueMaxAge,02:00:00
Name,Value,SvlDebugModule.Debug,false

thats what I would expect:

Name,Value,
WebServiceModule.MpdConfigFilePath,
MaximumThreadCount,120
DeviceModule.QueueMaxAge,02:00:00
SvlDebugModule.Debug,false

Any ideas what went wrong, or is this by design?


Steve
Telerik team
 answered on 17 Nov 2011
1 answer
148 views
I am trying to build a Profit & Loss Statement using a crosstab and I have not been able to determine if I can insert calculated values between certain groups.  The first jpg shows an example of the data returned by my query.  The other jpg shows where I need to add custom calculations between certain groups. (This example does not show the mutliple monthly columns of the crosstab.)

For example: "Net Revenue" = Total of "Revenue" group - total of "Adjustment" group.

So, it is possible to insert rows between groups in a crosstab? Any help would be greatly appreciated.

Thanks,
Mark
Peter
Telerik team
 answered on 16 Nov 2011
1 answer
144 views
Dear Support,

During Development we've been confronted with a question of our customer concerning the navigation of the report viewer.
The reports created by us always consists of 3 or 4 sub-reports. Is it possible to change the navigation from arrows to direct links?

For explanation:

How it currently looks like: http://temp.mobile.at/telerik/ReportViewer1.jpg
How we want it to look like: http://temp.mobile.at/telerik/ReportViewer2.jpg

Thanks in advance!
Steve
Telerik team
 answered on 16 Nov 2011
10 answers
488 views
Unable to discover a solution to this issue in other forum posts.  I have an VS2010 Framework 4 ASP.Net application that uses a Telerik report.  I actually have two problems to solve today.

1) I started out to fix a bug where the report parameter seems to have been ignored for a master/detail report.  The data coming back is the record related to the default parameter value.

2) In the process if trying to get back into Design mode, I am forced to comment out the connection string code in Sub New() for the master report and all sub reports.  After doing this and setting the default parameter to zero I now get the OCIEnvCreate failed error and can't find out how to resolve it.  Oracle Home is not the problem as it worked fine in Design mode and App mode before I commented out the connection string code.  I also validated that the connection string in app.config had the correct userid and password (I had changed the userid to something invalid so that I could certify that the report was using the web.config connection string at runtime vs the app.config string used at Design time.)  It is in fact correct.

The (commented out) code in the Master report is given below.  All subreports (there are five of them) have the identical code sans the property code.

I have to say this is extremely irritating and frustrating to have to comment and uncomment these code snippets to work in design vs run mode.  I consider this a bug, and it really needs to be fixed.  It's a major source of wasted development time.  Once things get bollixed up one has to 'Clean' the project, recompile, sometimes exit the IDE and restart it, and in two cases last week I had to restore files from the day before to get back to a certain starting point.

If anyone knows a solution to this issue, I would be extremely grateful for any help that can be rendered!

Regards,

Rich

(

Partial

 

 

Public Class RequisitionMasterReport

 

 

 

Inherits Telerik.Reporting.Report

 

 

 

Public Sub New()

 

InitializeComponent()

 

 

'Me.DataSource.ConnectionString = ConfigurationManager.ConnectionStrings("WFL_TelerikReports").ConnectionString

 

 

 

'Me.DataSource.ProviderName = ConfigurationManager.ConnectionStrings("WFL_TelerikReports").ProviderName

 

 

 

End Sub

 

 

 

Public Property RequisitionObjectID As Integer

 

 

 

Get

 

 

 

Return Me.ReportParameters("ReqOI").Value

 

 

 

End Get

 

 

 

Set(ByVal value As Integer)

 

 

 

Me.ReportParameters("ReqOI").Value = value

 

 

 

End Set

 

 

 

End Property

 

End

 

 

Class

 

)
Richard
Top achievements
Rank 1
 answered on 15 Nov 2011
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?