Telerik Forums
Reporting Forum
1 answer
1.5K+ views
Hi,

What is the property that needs to be set in order to position a pie chart near the left of the plot area?  Right now my pie chart is positioned in the centre of the plot area and is sometime overlapped by the legend.

So basically I want to move the pie chart image itself to the left inside the plot area allowing for more room to display the legend.

Thanks for any help.
Peter
Telerik team
 answered on 31 Mar 2011
5 answers
166 views
Good Day All

I have a strange thing happening in my project. i have a report that retrieve the barcode info based on a certain criteria. The data gets filtered and it get displayed. but this value is the Value that is assigned to a barcode from the database. now on design and preview it shows the barcode,  but when i run it in my app, it only shows the code number from the database not the barcode and the number as depicted in the preview. what is the problem. i have attached the properties of the barcode on design mode.

Vuyiswa
Top achievements
Rank 2
 answered on 31 Mar 2011
3 answers
107 views
I have a simple report that has 4 columns.
Section, Subsection, Mandatory, and detail.

The report is grouped by the Section, Subsection, and Mandatory fields.

The page breaks and the report looks as I want it on the preview in the design but it has different page breaks in the HTML preview. And if the actual running of the code, the detail data looks good but the Section and Subsecition never change.

I am using VS 2010,with C# and the most current version of Telerik Reporting. This is an ASP application. Any ideas on how to fix this?
Hrisi
Telerik team
 answered on 31 Mar 2011
8 answers
126 views
Good Day All

i am using Silverlight Reporting. i have tried to follow the demo example many times , just to display a barcode report that is not even connected to the database, but i could not. I have attached the example project that fails. So basically i have a class library that has a report and and i have a Silverlight app that has a asp.net or html project that host the silverlight, and i have created a service from the web app and and i have referenced the report from there. but still the barcode dont show.

Please find the attached project

http://www.vuyiswamaseko.com/Report2.zip

Thanks
Vuyiswa
Top achievements
Rank 2
 answered on 30 Mar 2011
1 answer
262 views
Hi,
I have some problem using crosstab to display the percentage of number of items against the total of each group. Right now it's calculating agains the total count of the entire report.
Attach is my screenshot with explaination.

Thanks
Quan Nguyen
Peter
Telerik team
 answered on 30 Mar 2011
5 answers
800 views
Hi,
I have a some list boxes on a ASP.NET page were I can filter my report.
After I made my choices I click the submit button and render the report.

Now I want to print all the filtered items on a new blank page at the end of the report.
Is it possible to add a new blank page to the report and print the item names there?

My first thought was to use a sub report and place it on the reports page footer section but the designer want let me so I guess it's not possible!?
(I could place the items directly on the page footer section but I have a couple of reports with equal filter options so I wanted to use some kind of include)

Regards,
Mattias

Peter
Top achievements
Rank 1
 answered on 30 Mar 2011
7 answers
237 views
Hi,
I'm trying to setup reportViewer for my silverlight project. I'm using Telerik Reporting Trial version so far. I built a simple report which just gives me the correct data preview as expected. Now I'm trying to set up that report for my silverlight application so that I might see it in the reportviewer. for that I've also implemented ReportService configurations.
here
<Grid x:Name="LayoutRoot" Background="White">
        <telerik:ReportViewer
              ReportServiceUri="../ReportService.svc"
              Report="TelerikTrialReportSample.TrialReport, TelerikTrialReportSample, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
        </telerik:ReportViewer>
    </Grid>

Now I expect this to display me the TrialReport [ which shows me the correct data preview at least]. But when I run this solution i only get this error being displayed in the ReportViewer control.

There is no available report type with assembly qualified name 'TelerikTrialReportSample.TrialReport, TelerikTrialReportSample,                        Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.
Could not load file or assembly 'TelerikTrialReportSample, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.


Although, TelerikTrialReportSample lies with the same solution and TrialReport already has been given a qualified name. I've verified assembly version number as well. And still getting this error. Can someone guide me what did I miss or which side I should try to debug it further.
Igor
Top achievements
Rank 1
 answered on 29 Mar 2011
1 answer
96 views
Hy,

i'm working with Telerik Reporting and have some problems. I create one master report where i have report parameters and a header of the page. After user selects values for parameters (2x datetime, 4x Integer, 1x Boolean) i want to show right SubReport (if true then subreport1 else subreport2). Those two subreports use 6 parameter values from master report parameteres and I pass those values to SqlDataSource in each subreport.

If I delete one SubReport field my report works as it should. But if I have two SubReport fields on master report i get "Object reference not set to an instance of an object." I dont have any idea what i'm doing wrong.

I have test each subreport in designer and datasource are ok. In master report i have two DataBound methods where I set Visible to true or false which subreport to show.

public static bool subMeseci = true;
 
private void subReport_PoMesecih_ItemDataBound(object sender, EventArgs e)
        {
             
            subMeseci = (bool)this.ReportParameters["months"].Value;
            if (subMeseci)
                (sender as Telerik.Reporting.Processing.SubReport).Visible = true;
            else
                (sender as Telerik.Reporting.Processing.SubReport).Visible = false;
             
        }
 
        private void subReport_Vse_ItemDataBound(object sender, EventArgs e)
        {
             
                subMeseci = (bool)this.ReportParameters["months"].Value;
                if (subMeseci)
                    (sender as Telerik.Reporting.Processing.SubReport).Visible = false;
                else
                    (sender as Telerik.Reporting.Processing.SubReport).Visible = true;
        }

I also set all 6 parameters that i use in subreport datasource.

I have attached two photos (one is my master report wher i have two subreports in detail section, and other shows report parameters that i pass to subreport).

First I was thinking that i do something wrong when i'm passing parameters to subreport but as i mentioned in the begining if i delete one subreport field from master report it works ok.

Sorry for my english but i hope you get the point what my problem is.
Peter
Telerik team
 answered on 29 Mar 2011
3 answers
179 views
Hi,

I have telerik reporting services configured in 2 website in my machine.  I can get the wsdl file from both website, but only one of the services is actually working.

The 2 urls are:
https://localhost/svxservices/solvexia.svx.server.services.ReportService.svc
and
https://localhost/client.application.Web/ReportService.svc

The url for the aspx page that host the silverlight viewer is https://localhost/client.application.web/CreateAuditDocumentForMultipleProcesses.asp

Does telerik report services have any cross domain restrictions?


Regards
Bill
Hrisi
Telerik team
 answered on 29 Mar 2011
5 answers
543 views
Hi,
I have problem exporting 109 pages to excel, it just timeouts.
The web reportviewer loads perfectly in ~20 seconds and generating a PDF loads in ~15 seconds but generating a EXCEL timeouts after about 5 minutes.

Is there some way to speed up excels or is it a bug?

(i'm using report dll 2009 3.2.9.1211 and asp.net dll 2009.3.1314.35)

Regards,
Mattias
Badrinarayanan
Top achievements
Rank 1
 answered on 29 Mar 2011
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?