Telerik Forums
Reporting Forum
1 answer
209 views
Hi,
    I want to insert chart in my report. For that I am reffering to the example given in "TelerikReporting_Manual_Q1_2007_SP1.chm".
However  chart wizard shown in example differs from the wizard I am getting in my application.
    I drag dropped the chart tool from toolbox.
    As per the example after selecting the Properties from the context menu the chart wizard shows following tabs:
Chart Type,Data,Elements,Settings,Autoformat
and following buttons:
OK,RESET,CANCEL,NEXT AND PREVIOUS
    However in my application after selecting the Properties from the context menu the chart wizard is showing the following tabs:
Type,Data, Labels,Legend & Title and Axis
 and following Buttons:
CANCEL,Apply and Submit
    The tabs are also not working properly.
    Am I making some mistake or using some wrong dll file ?

Thanks,
Rahul
Nikolay Dobrev
Telerik team
 answered on 20 Nov 2007
5 answers
287 views
Hello ,
 I am trying to use a pie chart in my report .Can this be done only programmatically? Quoting the example from the site
"handling NeedDataSource event for the sub report is not required anymore"
Is there a document which explains how to use report wizard or steps in using a chart non programmatically?

Many thanks in advance,
Vaneeth
Chavdar
Telerik team
 answered on 19 Nov 2007
1 answer
154 views
Hi

I'm assessing whether I could make use of Telerik reports for a project i'm working on. Could you please tell me whether Telerik supports cross tab reports and how this is achieved?

thanks
Marcio
Svetoslav
Telerik team
 answered on 19 Nov 2007
6 answers
815 views
Hi,

I am trying to create a report with simple SQL query to accept a dynamic parameter during run time. I have checked the Help file and to was only able to find that "parameter" in reporting is supported.

I searched the entire site to my best of ability but was only able to find an outdated video showing how to achieve it in Reporting Q1.

This is driving me nuts to some extend. Is there a full example where I can reference how can I create a report that accepts parameters and initialize the params via the ReportViewer from a web page? I just couldn't get it to work.

And also, I simply can't find the "Edit Expression dialog" from the context menu in the report designer as shown in the help file. Am i missing on something? I am using Reporting Q2 2007.

Any help is really appreciated. Thanks.

Regards.
Chavdar
Telerik team
 answered on 19 Nov 2007
6 answers
302 views
Hi,

Reporting (v1.5) is working fine on my development machine, but on the server I'm getting...

Configuration Error

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: An error occurred loading a configuration file: Access to the path 'D:\Inetpub\wwwroot\web.config' is denied.

Source Error:

[No relevant source lines]

Source File: D:\Inetpub\wwwroot\web.config    Line: 0


Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832

The web.config has the following definitions:
...

<system.web>

<httpHandlers>

<add path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=1.5.0.0, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" validate="true"/>

</httpHandlers>

<compilation debug="false">

<assemblies>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

<add assembly="Telerik.ReportViewer.WebForms, Version=1.5.0.0, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>

<add assembly="Telerik.Reporting, Version=1.5.0.0, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>

<add assembly="Telerik.Reporting.Processing, Version=1.5.0.0, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>

<add assembly="Telerik.Reporting.Interfaces, Version=1.5.0.0, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>

</assemblies>

</compilation>

</system.web>

Thanks,
Bruce
Chavdar
Telerik team
 answered on 19 Nov 2007
5 answers
617 views
How can i Maximize Report Page dynamically
Chavdar
Telerik team
 answered on 16 Nov 2007
1 answer
170 views
Hello,

Does PicutreBox support TIF type image? Or Is there any way I can put a TIF image into the report?

Thanks
Hrisi
Telerik team
 answered on 16 Nov 2007
1 answer
408 views
Hello,

First, my goal is to take a report and convert it to a image.  To that end I found some sample code (shown below) which does that
The code creates a jpeg, but only the first page is rendered.  Is this code incomplete?

Scott

Report1 report1 = new Report1();
string mimType = string.Empty;
string extension = string.Empty;
Encoding encoding =
null;
try
{
 
Hashtable deviceInfo = new Hashtable();
 deviceInfo[
"OutputFormat"] = "JPEG";
 
byte[] buffer = Telerik.Reporting.Processing.ReportProcessor.Render(
     
"IMAGE", report1, deviceInfo, out mimType, out extension, out encoding);
 
using (MemoryStream stream = new MemoryStream(buffer))
 {
   
using (Image img = Image.FromStream(stream))
   {
     img.Save(
@"c:\" + report1.GetType().Name + "." + extension,
       System.Drawing.Imaging.ImageFormat.Jpeg);
   }
 }
}
catch (Exception ex)
{
 MessageBox.Show(ex.ToString());
}
Hrisi
Telerik team
 answered on 15 Nov 2007
1 answer
96 views
Hey I'm testing out the reporting components so that I can use them in a software development project that utilises the doodads/MyGeneration framework. www.mygenerationsoftware.com/dOOdads/dOOdads.aspx

I would like to know the best way to use Telerik Reporting with my existing data layer. Any resources that could help me would be greatly appreciated.
Svetoslav
Telerik team
 answered on 15 Nov 2007
2 answers
309 views
Hello,

I have problems with binding object to the report.

I have an Order class and OrderLine class. one order can contains multiple orderLines. So in my Order class, I have a List<OrderLine> property.

Now I create a List<Order> object and I want to bind my List<Order> to my report. And I add a group to the report. I want to bind the Order's properties like OrderID, orderDate,..., to the Group header section, and display the OrderLine list's properties to the details.

The problems is it can display the properties defined in Order, but it can't display the properties in OrderLine object in the detail section.

Thanks in advance
Steven
Top achievements
Rank 1
 answered on 14 Nov 2007
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?