Telerik Forums
Reporting Forum
1 answer
321 views
I've got a form letter/report that is using an htmltextbox for the main body of the letter. It has a few paragraphs using just <p> tags and a couple of ordered lists, <ol>. The report looks fine when I preview it in the designer, but when I view it in the html previewer or on a web page with the ReportViewer the styling for the paragraphs don't appear. Mainly there's no spacing between the paragraphs. If I print or export to pdf the spacing is there. I also have a style on the ordered list, style="list-style-type: lower-alpha", which works in the editor but not anywhere else.

Not sure how to figure this out, its a very simple report. All help is appreciated.
Peter
Telerik team
 answered on 04 Feb 2011
2 answers
89 views
Hello,

I am having a problem with the Report tool in my ASP.Net application.
I already found your KB artikel about this issue, but as far as i can see that those options arent valid in this case.

My application runs on 3 different servers.
1. my development machine, works like a charm.
2. Our "live" test server. customers use this to test out new releases and patches. Here it also works like a charm.
3. Live enviroment. In 90% of the cases we get this error.

What happens:
In a multipage report it can happen that page 1 works, page 2 doesnt and page 3 works again. If i would run the same report 1 minute later it could happen that it wont load at all.
Sometimes, images wont show up in the report. Barcodes sometimes render, sometimes they dont.

What could this be?

Regards,
Jelte

Massimiliano Bassili
Top achievements
Rank 1
 answered on 04 Feb 2011
1 answer
88 views
Hi

I am using Silverlight and render reports via Telerik Silverlight ReportViewer. Everything works fine except when the data is large (5000 rows). The report starts getting data and display the busy animation. After a while it just throws an exception "An exception occurred during this operation, making the result invalid. Check InnerException for exception details"

Is there something I can do for larger data?
How can I view the Inner exception, because the error it currently gives me, means nothing to me?
Steve
Telerik team
 answered on 04 Feb 2011
1 answer
571 views

Hi Support Team,

I am using Telerik reporting V4.2

 

Value

Vertical Relevance (%)

200

20

300

30

500

50

Total

1000

100

 

I want to calculate vertical relevance field as shown in above.

Formula:

Vertical relevance = (Value/ Total value) * 100

Example: (of first row)

                20% = (200/1000) * 100

I am get not sum (total value = 1000) at row level, it return 200 for total.

 Please help me to calculate Vertical relevance.

Thanks in advance for support.

- Kalpesh

Peter
Telerik team
 answered on 04 Feb 2011
0 answers
51 views
Hello,

When I remove the report project (in fact, Unload Project) of my Silverlight/Web projets, everthing works nice.

When the report project is include in my project, after about 5 ou 6 minutes, every access to my DomainService become denied (every DS have [RequiresAuthentication]).

Someone call tell my why???

Louis Bouchard
Top achievements
Rank 1
 asked on 04 Feb 2011
1 answer
35 views
Hi ,
      We are using the telerik reporting q2 2010.In that ,I have used the Action property for Navigate to report purpose.We have one reportviewer , by clicking one field of the main report it will open the another report within the same reportviewer.I got the error message "
Report is unavailable or session has expired.
--------------------------------------------------------------------------------
Please, refresh the page

"
while I have click the browser's back button at first time in the second report(report within the report).After that it is working fine.

Thanks in Advance.
Seeni
Peter
Telerik team
 answered on 03 Feb 2011
3 answers
164 views
I have a report with a PictureBox in the PageHeaderSection.  I've set a border color, style, and width for all four sides, and three sides render as expected, but the right side is missing.

Here's a screenshot of it in design mode: http://comsimplicity.com/SCREENSHOTS/Telerik/PictureBoxBorderDesignMode.gif
And here's one of it in HTML preview mode: http://comsimplicity.com/SCREENSHOTS/Telerik/PictureBoxBorderPreviewMode.gif

The .gif itself is 205x85 pixels, and I've tried widening the PictureBox way beyond that width.

Any clues?
Hrisi
Telerik team
 answered on 03 Feb 2011
5 answers
1.0K+ views
Hello,

I'm currently working with telerik reporting, and I'm displaying a chart for every row of the datasource of the report.
The chart displays a stacked bar chart type. I have a very similar issue like this post:

The difference is that I'm using a report to display the chart, and since I'm in the environment of the report the chart control have only 4 events in which the ItemDataBoundItem, the code I wrote seems to have no visual effect over the chart:

Private Sub chtDefectsByFamily_ItemDataBound(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chtDefectsByFamily.ItemDataBound 
        Dim ChartItem As Telerik.Reporting.Processing.Chart = DirectCast(sender, Telerik.Reporting.Processing.Chart) 
        Dim ci As Telerik.Reporting.Chart = TryCast(ChartItem.ItemDefinition, Telerik.Reporting.Chart) 
        For Each seriesItem As Telerik.Reporting.Charting.ChartSeries In ci.Series 
            seriesItem.Appearance.LabelAppearance.LabelLocation = Charting.Styles.StyleSeriesItemLabel.ItemLabelLocation.Inside 
            seriesItem.Appearance.TextAppearance.TextProperties.Color = Color.White 
            For Each serieItem As Telerik.Reporting.Charting.ChartSeriesItem In seriesItem.Items 
                If serieItem.YValue = 0 Then 
                    serieItem.Label.Visible = False 
                End If 
                serieItem.SetDirty() 
            Next 
            seriesItem.SetDirty() 
        Next 
    End Sub 

Is it possible to modify the chart during/after the binding of the data?? or is there any other way to hide the labels before the chart is shown?
Deepak Shakya
Top achievements
Rank 1
 answered on 03 Feb 2011
0 answers
94 views
I have a report where there are a set of known values which are dynamically set.  The detail section shows numbers that are used for comparative purposes.  I am looking to create a binding or some other method that will evaluate the difference between the two values.

Example: 

Design surface:
In groupheadersection1 I have a textbox  txt1
In detailsection1  I have a textbox txt2 with a value of =fields.someval
In detailsection1 I have a textbox  txt3 which needs to show the difference between txt1.value and txt2.value

Code:
Partial Public Class tstClass
    Inherits Telerik.Reporting.Report
    Public Sub New(ByVal _ds As DataSet)
        InitializeComponent()
        txt1.Value = _ds.Tables(0).Rows(0).Item(0)
        Me.DataSource = _ds.Tables(1)
    End Sub



Accessing the value via expressions seems to fail.  I created a binding, to a public shared function, but of course the shared function cannot access txt1.

Any ideas on how to get the value for txt1.value-txt2.value??

Joel
Top achievements
Rank 2
 asked on 02 Feb 2011
1 answer
59 views

I have a website that uses the report control. In the development environment, the control works perfectly and you can export the report to all available formats. In the QA environment, without any change in the code, the XPS format disappears from the list of formats you can export the report. In the production environment also disappear Excel and PDF formats (essential for me). What could be happening? What should I do to display these export formats?

Thanks in advance.

Steve
Telerik team
 answered on 02 Feb 2011
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?