Telerik Forums
Reporting Forum
2 answers
245 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
276 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
134 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
60 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
1 answer
638 views
Hi Guys

I am creating dynamic table and using (07a0fcda-7fca-4925-b85b-7a3c620a2d6f_DynamicStaticRows.zip sample //  Report1.cs)
I am using  Q2 2013 SP1

I have Table Cell values like below

1    2        3  //Row 1
1    5        6  // Row 2


I need to merge Row cells 1 and 1 to be like below

    2  3 //Row 1
1                         //Merged data in middle
    5  6  //Row 2

My Client Requirement is to export to PPT with same output (If possible any sample code is app)

Senthil
Petio Petkov
Telerik team
 answered on 14 Nov 2013
35 answers
1.8K+ views
Hi,

What is the best way to implement the report viewer using MVC 3 project with the Razor engine?

Thanks
Stef
Telerik team
 answered on 14 Nov 2013
2 answers
88 views
hi Guys



I am working on dynamic Table where textbox are dynamic

below is code , i am making one textbox bottom border style=none

labelTextBox.Style.BorderStyle.Bottom = BorderType.None; //Not Exporting to Powerpoint
                    labelTextBox.Style.BorderStyle.Top = BorderType.Solid;
                    labelTextBox.Style.BorderStyle.Left = BorderType.Solid;
                    labelTextBox.Style.BorderStyle.Right = BorderType.Solid;

labelTextBox.Style.BorderStyle.Bottom = BorderType.Solid; //Exporting to Powerpoint
                    labelTextBox.Style.BorderStyle.Top = BorderType.Solid;
                    labelTextBox.Style.BorderStyle.Left = BorderType.Solid;
                    labelTextBox.Style.BorderStyle.Right = BorderType.Solid;

Attached sample image which i am in need of

Senthil


Sentil
Top achievements
Rank 1
 answered on 14 Nov 2013
1 answer
110 views
I have a report that contains a Area Graph.  I have set up all the data and it works except for a few issues.
In the coordinate System collection when I set the Label FOrmat for the XAxis to {0:d} it still displays the time.  How do I just display the date?

Also I can get the No Data Message to work but If I set the NoDataStyle  visibility to false it still displays?

Also how can I set the xAxis to not display every tick mark.  The x axis is every month since 2004 currently the scale is set to Category Scale and I do not see a way to set a step poperty.  When I change it to date then the graph no longer displays

Are these know issues?
Hisham
Top achievements
Rank 1
 answered on 13 Nov 2013
1 answer
171 views

I have been having an issue the area chart in the Telerik reporting for WPF.  I have a sql query that returns a seriesID, DateTime, and Account Value. 

When I set the chart up I set the GraphGroup Collection to the Valuation Date. 

For the Series I have the Category Group set to the ValuationDateGroup, the Series GroupI have the series ID, for the Y I have the sum of the Account Value.

For the Graph Coordinate System the x axis is CategoryScale and the yAxis is NumericalScale

 

I can get the graph to display this way but I cannot get the date on the x axis to format without the time, and when I change the xAxis to DateTimeScale the graph is blank.

I want to be able to format the date to just show date and then only show the lables on the x axis ever 6 months.

 

I created these reports originally with an earlier version but they did not work so I upgraded the controls to the most recent.   Now when I change the XAxis to DateTimeScale VS2008 errors out and closes.  I can go to the designer.cs and code the report to DateTimeScale and it will run but I still have the same issue.

 

I had contacted Phone support and Rick Hellwege told me to set the Data.x propery of the Graph to DateTime, but I cannot find this property anywhere.

Ivan Hristov
Telerik team
 answered on 13 Nov 2013
10 answers
467 views
Hello,
How I can use store procedires with parameters? I would like to fill DataAdapter depends on parameters.
Could you heplp me?
Regards.
Leszek
clayton
Top achievements
Rank 1
 answered on 13 Nov 2013
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?