Telerik Forums
Reporting Forum
3 answers
189 views
Hi,

Keeping in mind with the scalability we have decided to use SessionState mode to SQLServer.Unfortunately, telerik reports fail to display any data. The odd thing is it was working and it works when SessionState mode is "InProc".

As everyone knows, I have modified SessionState in web.config. Please advise me.

Many thanks.

MG

 
Peter
Telerik team
 answered on 19 Oct 2010
3 answers
125 views
Hi,
I'm new to Telerik Reporting. I've a report running alright. Now I'm trying to add a report parameter to it. I've setup a parameter but my report doesn't filter the record I can see my parameter on the report. but report data isn't affected at all. Is there any walkthrough for setting up basic parameter functionality?

e.g I have a employee table ... and I've set up a multivalued parameter for the First Name. it shows a dropdown with that data. but should it also filter my data? or do I need to add a filter further? because when I try to add a filter my parameter dropdown doesn't get any data.

Can someone plz guide me here.
 
thanks
Steve
Telerik team
 answered on 19 Oct 2010
0 answers
53 views
I am trying to use the Telerik Silverlight Reportviewer in a Silverlight Business Application.  I am using VS2010 and Silverlight 4.  When the viewer runs rather than the report, I get a message in the report area that says "No Report".  In trying to resolve this I built a basic Silverlight app and used exactly the same procedures and the report renders as it should.  Is there something different I should be doing to get the reportviewer to render a report when using a Silverlight Business Application?  Any help would be appreciated.
Thank you  
carl
Top achievements
Rank 1
 asked on 19 Oct 2010
1 answer
168 views
I am building a report generator based on metadata from our database (there will be to many varied reports to generate them with the designer).  The reports are dynamically generated and passed to the report viewer.  In the web forms report viewer, they come up blank.  I have an external windows console utility that reads the same metadata definitions (using the same class as the web form version) and then exports them to .pdf files.  The pdf files generate fine, but the web form viewer is blank.   I am using a real simple template which uses no data source and contains one text box in the details section with the message "hello world". 

Any suggestions on how to diagnose this further?

Thanks
Richard
Top achievements
Rank 1
 answered on 19 Oct 2010
4 answers
504 views
Hello,

I'm new to Telerik reporting and I was wondering if it's possible to change the series item label vertical positioning with a pie chart? Or even being able to move the labels Positioin.X and Y values would work.
I tried setting intelligentLabelsEnabled = true but with a lot of series items the labels are too hard to follow.

I tried somthing like,

ChartSeriesItem

 

item = new ChartSeriesItem();

 

item.YValue = 10;

 

item.Label.TextBlock.Text =

"Ben 10";

 

item.Label.Appearance.Position.Auto =

false;

 

item.Label.Appearance.Position.AlignedPosition = Telerik.Reporting.Charting.Styles.

AlignedPositions.None;

 

item.Label.Appearance.Position.X = 10;

item.Label.Appearance.Position.Y = 10;

 

chartDrill.Series[0].Items.Add(item);

Any ideas?
Thanks in advance,
~Boots

pradeep tamanar
Top achievements
Rank 1
 answered on 19 Oct 2010
5 answers
141 views
I recently upgraded a report class library using the upgrade wizard.  At first I was getting parameter errors: Warning 2 '@PolicyNum' is not a valid ReportParameter name. C:\WebSites\ClassLibraryLR\ClassLibraryLR\InsuredName.Designer.vb 127 0 

On advice from another post on a different upgrading problem, I uninstalled and reinstalled the Q2 2010 reporting, but that didn't do anything.  So I tried deleting and re-adding the Telerik.Reporting reference.  I added some additional Reporting references (Telerik.Reporting.Service, Telerik.ReportViewer.WebForms and Telerik.ReportViewer.Wpf), and now have this error:

Warning 2 The designer could not be shown for this file because none of the classes within it can be designed.  The designer inspected the following classes in the file:

 LRSummary --- The base class 'Object' could not be loaded.  Ensure the assembly has been referenced and that all projects have been built.  0 0 


The parameter error is also happening on some of the other reports.  Any ideas on how to fix this?
Terry Webster
Top achievements
Rank 1
 answered on 18 Oct 2010
1 answer
55 views
Hi,

I already used RadChart for silverlight to create a chart. Can I integrate this xaml file into my report so that I don't need to draw the chart again in report?

Thanks
Peter
Telerik team
 answered on 18 Oct 2010
1 answer
204 views
Hi,

When I have a table which spans more than one page, additional pages keep appearing either at the top or within the table.  For example, the table will start halfway down page 1 (as expected), page 2 will be blank, the table continues on page 4, pages 5 and 6 will be blank and then the table continues on page 7.  I have set KeepTogether = false on the table and the groups and it is just a simple talbe connecting to a Sql DataSource.  Is there something I am missing?

Thanks,
Rob
Peter
Telerik team
 answered on 18 Oct 2010
0 answers
76 views
Hey Guys,

I have a set of fields that are supposed to be displayed in specific places in a template, that's gonna be printed with some fixed content located in that template
What's your recommendations?
1. Should i display the image as report background?
2. Should i just layout the fields on a blank report and put a copy of the paper and fix the positioning of the fields?
3. Should i use a PDF template and send the report to overwrite that PDF template?

Thanks a lot
Mike
Mike_T
Top achievements
Rank 1
 asked on 16 Oct 2010
1 answer
270 views
Hi,

I have a report with multiple charts but only one sql datasource and uses filtering of the results for each chart.
The sql datasource calls a stored procedure with parameters and returns the results for all charts.
I noticed a performance issue on the report with large datasets and found out that even though I have one datasource the stored procedure is executed on the database for each chart with exactly the same parameters (in the designer and in the silverlight report viewer). 

I have tried to use the needdatasource event of the charts and execute the sql there for the first chart and use the same dataset in the others but that does not seem to work either.
I have placed the code below.

If a stored procedure is used and the parameters of the stored procedure is not changed it would make sense to only execute it once right?

Thanks for the Help,
Kobus

public

 

 

partial class Report1 : Telerik.Reporting.Report

 

 

 

{

 

 

 

DataSet dataSetChart = null;

 

 

 

public SummaryDashboardReport()

 

 

{

 

 

InitializeComponent();

 

 

 

 

}
 

 

 

 

private void char1_NeedDataSource(object sender, EventArgs e)

{

dataSetChart = FillChartDataSet();

(sender 

 

as Telerik.Reporting.Processing.Chart).DataSource = dataSetChart;

 

 

 

}

 

 

 

 

 

private void chart2_NeedDataSource(object sender, EventArgs e)

{

(sender 

 

as Telerik.Reporting.Processing.Chart).DataSource = dataSetChart;

 

 

 

}
}

 

 

 

 

 

Peter
Telerik team
 answered on 15 Oct 2010
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?