Telerik Forums
Reporting Forum
1 answer
107 views
Since moving to W3 2013, we've noticed some display issues with the ReportViewer, specifically in the header. Images aren't aligned, target areas (for clicking) vary in size, etc. We've tried changing the skin, but the issues persist. The attached screen shot will show what I am talkign about.

Has anyone else seen this? Any solutions?
KS
Top achievements
Rank 1
 answered on 15 Nov 2013
4 answers
183 views
Hello Guys, 

In my DB I have a column with bool value, when I get a report my report viewer show this column as "TRUE" or "FALSE", I want change this report viewer to show "YES" and "NO". How can I do this?

I posted in attach a image showing this.

Thanks!
Squall
Top achievements
Rank 1
 answered on 15 Nov 2013
1 answer
532 views
Hello,

Let's say I have a table with two columns defined as following:

ITEMS ON HAND
=Sum(Fields.transaction_units)

STOCK VALUE
=Fields.item_unit_cost * Sum(Fields.transaction_units)

What I want is to sum stock value in the table footer. I tried

=Sum(Fields.item_unit_cost * Sum(Fields.transaction_units))

but nested aggregates are not allowed. This is a quite common scenario, so I suppose that there is a simple way to achieve it?

Thanks
Stef
Telerik team
 answered on 15 Nov 2013
1 answer
79 views
I have done a custom format function in code behind


        public static string FormatYesNo(Int16 skill)
        {
            if (skill ==0)
                return "No";
            else
                return "Yes";
        }

But when i render the report i get this error shown in screen shot
Squall
Top achievements
Rank 1
 answered on 15 Nov 2013
1 answer
68 views
Hi,

Today I have upgraded my Telerik reporting service with Q3 2013 7.2.13.1016 and upgraded all the reports using telerik Upgrade report wizard too. I was able to pass report parameters in previous version. But in this version, Report parameters are going to pass from Silverlight application to my Report.But on ItemDataBinding event, I am getting Report parameter without any value.Please guide me for the same. Why suddenly working thing get stop working due to new update?
Peter
Telerik team
 answered on 15 Nov 2013
11 answers
1.4K+ views
Hello

I have a pictureBox in my telerik Report.

If i use a real directory "multimedia" the path work , it's ok.

cPath = "~/multimedia//logo.jpg";

But if the directory Multimedia is virtual (cause i shared it for other project)
the report don't find this picture.

i have to use the complete path with domain to get this. "http://localhost/myproject/multimedia/logo.jpg"

And in asp.net Webform , it's work , but in telerik report it doesn"t work.

Have you any solution to give me.

thanks
Oliver
Olivier
Top achievements
Rank 2
 answered on 15 Nov 2013
2 answers
256 views
Hi,

I have a simple report, with a table and database query return a large number of records (5000).
If I run report in Report designer its work ok, but if run it in the Silverlight component after 10 minutes continuing "load page".

This report, with 5000 rows only have one page, only when I export it to PDF generate several pages. It is possible create the pages when I run the report.

Thanks in advance.
Best Regards,
Marcelo Videira
Marcelo
Top achievements
Rank 1
 answered on 15 Nov 2013
1 answer
283 views

I have an asp.net website where few pages contain Telerik Reports. I found that the pages with the reports retains data in memory even after I move to a different page closing the previous one (it keeps summing up). Every time I run a report, 10-15 Mb are added-up and do not get released. I think this is a memory leak.
Attached the picture I got using Justtrace. The rump up is basically caused by reports getting opened/launched on different webpage, one at time (switching between pages).
The long standstill situation of the memory at the higher value is basically no-activity on the website showing a page with the last report opened. As you can see the memory never gets released.

How can I free the memory once the report is rendered to avoid such issue?
Peter
Telerik team
 answered on 15 Nov 2013
1 answer
140 views
hi,

Is it possible to set the value between the more wide bar and the more tight one?
in order to making a more spacing code128 barcode.

i have another question.
We have a barcode value like that ABC1234567DEF.

is it possible to build a barcode programmatically with different symbology like this
 - ABC with code128A
 - 1234567 with code128B
 - DEF with code128A
build barseries with different symbology and add them in a barcode container.

yeah it's look like a crazy idea.
thanks for answering.
Best regards
Stef
Telerik team
 answered on 14 Nov 2013
1 answer
66 views
Greetings

In just converted a recent project I am working on from Q1. 2011 Telerik Reporting to Q1, 2013

After converting some of the code to the new version. I notice that my line bars lose their original colors. However, for graph that were of type Bat Chart or Point Chart colors were preserved very well.

In my scenario, I applied an Skin to the Chart objects, subsequently I attempt to overwrite their color settings. So I notice that there is a very strange situation specific to the line chart.

This will work for the Point Chart

ChartSeriesItem seriesItem = new ChartSeriesItem();
seriesItem.PointAppearance.FillStyle.MainColor = Color;
seriesItem.PointAppearance.FillStyle.FillType = Telerik.Reporting.Charting.Styles.FillType.Solid;

The following will work for Bar Charts

ChartSeriesItem seriesItem = new ChartSeriesItem();
seriesItem.Appearance.FillStyle.MainColor = Color;
seriesItem.Appearance.FillStyle.FillType = Telerik.Reporting.Charting.Styles.FillType.Solid;

The following for some reason will not Work for me on this new Line Chart

ChartSeries series = new ChartSeries();
series.Appearance.LineSeriesAppearance.Color = Color;
series.Appearance.LineSeriesAppearance.PenStyle = System.Drawing.Drawing2D.DashStyle.Solid;

I have try everything to make the line Chart work, however I have not come to a solution. What I am doing wrong with respect to a Line Chart in this version Q1, 2013

I will appreciate the response
Stef
Telerik team
 answered on 14 Nov 2013
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?