Telerik Forums
Reporting Forum
1 answer
108 views
I need a seemless integration of silverlight in our own application.
The problem ist that the ViewModel property of the ReportViewer is private.
I have no chance to save a file with own workflow without clicking the toolbar.

How to to disable toolbar bar? how to export and navigate with own controls?

kind regards


Steve
Telerik team
 answered on 27 Jun 2011
0 answers
129 views
Hi

I have a class called StatusPercentage with the follwoing properties

AvailablePercentage
ReservedPercentage
OccupiedPercentage
CancelledPercentage

All the above properties are double data type.

I have to display a list of the above class objects using Pie Charts. i.e. for each object, one pie chart should be displayed. And teh number of objects in the list is not fixed. So, the number of pie charts to be displayed also is not fixed. So, pls let me know can it be possible to display the pie charts dynamically based on the items count in the data source. It would be really gr8, if u can provide me with an example asas, as it is almost deadline for us to impelment it.

Thanks in advance
Ravindra

RAVINDRA
Top achievements
Rank 1
 asked on 26 Jun 2011
0 answers
103 views
I want to know how to make Telerik reporting  connected with stored procedure that contain virtual table every time I use this stored procedur there is error said that can't make Telerik report with virual table.
Mahmoud
Top achievements
Rank 1
 asked on 26 Jun 2011
0 answers
121 views
Hi I'm using the telerik reporting tool for the first time and I want to connect my reports  with my entity data model. how can I do it by code without using the wizard?
I'm using Entity Framework 4 and Telerik reporting Q2 2010
Cristian
Top achievements
Rank 1
 asked on 24 Jun 2011
6 answers
763 views
Has a distinct count function been added to the product yet?
Thanks!
Shane Woodruff
Top achievements
Rank 1
 answered on 24 Jun 2011
1 answer
165 views
Hi,

Got a new pc (64 bit), moved my vs 2010 project to the new pc from old pc(32 bit). installed latest telerik reporting, Run a succesful report upgrade wizard on the project, but now I get this error and it can not run report wizard.

Also I am not sure if my build configuration settings are correct.

Hope anyone can help me..


Steve
Telerik team
 answered on 24 Jun 2011
1 answer
201 views
Is it possible to set the print job name when printing a report?
Using a PDF printer (like FreePDF, Adobe PDF, Distiller etc) the report-viewer seems to pass the report class name instead of the member "name" or "documentname" leading to not that helpful file names.
I know there is a working PDF-Export feature... but sometimes it's helpful to have additional options like watermarks and multiple pages to one.


Thanks in advance!
Steve
Telerik team
 answered on 24 Jun 2011
8 answers
489 views
I have installed the latest Telerik Reporting into my vs2008 environment.  I have not used the reporting yet so am just now getting into it.  After the install I do not have any telerik toolbox tab or items, and I don't have any Telerik Reporting menu item.

I am able to create a class using the telerik reporting template, however I had to manually add a Telerik Reporting toolbox tab and then add the items to it.  However I am not sure how to get the Telerik Reporting menu item to show up.

I can go into designer and lay out a report.  Just not sure what all I'm missing with not having the Telerik Reporting menu item or what other part of the install may not have worked correctly.

I looked and I do have the Telerik_Reporting_Q1_2009.zip file in the following folder:
C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp

Thx,
Kevin
Ross
Top achievements
Rank 2
 answered on 24 Jun 2011
7 answers
215 views
2010.1 - Current Build

When I set the value of an ObjectDataSource parameter to "=Parameters.SomeParameter.Value", the ODS disappears from Data Explorer.  It reappears if I set the parameter value to <blank>.  Is it supposed to do this?

Thanks,
-Brian
Steve
Telerik team
 answered on 24 Jun 2011
11 answers
688 views
I am probably having two problems:
  1. How do you set the chart x axis and y axis to the dataset columns?
  2. Am not seeing any data in my chart from the datasource code below.

When I preview this chart, I am not getting data in the chart.  It shows 5 empty charts.

Code:

 

namespace

 

CPR_Reports

 

 

 {

 

using System;

 

 

 

using System.ComponentModel;

 

 

 

using System.Data;

 

 

 

using System.Data.SqlClient;

 

 

 

using System.Drawing;

 

 

 

using System.Windows.Forms;

 

 

 

using Telerik.Reporting;

 

 

 

using Telerik.Reporting.Drawing;

 

 

 

using Telerik.Reporting.Processing;

 

 

 

 

public partial class ActivePatientsChart : Telerik.Reporting.Report

 

 

 

 

{

 

 

 

 

public ActivePatientsChart()

 

 

 {

 

 

 

 

 InitializeComponent();

 

 

 

 

 

try

 

 

{

 

 

 

this.weB_PORTAL_TESTDataSetTableAdapter1.Fill(this.wEB_PORTAL_TESTDataSet.WEB_PORTAL_TESTDataSetTable);

 

 

}

 

catch (System.Exception ex)

 

 

 {

 

System.Diagnostics.Debug.WriteLine(ex.Message);

 

 

 }

}

 

 

 

private void chart1_NeedDataSource(object sender, System.EventArgs e)

{

 

string commandText = "select sum(I_Val) as ivalue,Date_ as day from stats where DATE_ between'6/26/2009' and '7/2/2009' and stat_no =4 group by Date_";

 

 

 

 

Telerik.Reporting.Processing.Chart chart = (Telerik.Reporting.Processing.Chart)sender;

 

 

 

SqlDataAdapter adapter = new SqlDataAdapter(commandText, Properties.Settings.Default.WEB_PORTAL_TEST);

 

 

 

DataSet ds = new DataSet();

 

 

adapter.Fill(ds);

 

DataView view = ds.Tables[0].DefaultView;

 

 

chart.DataSource = view;

 

}

 

}

}

 

Steve
Telerik team
 answered on 24 Jun 2011
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?