Telerik Forums
Reporting Forum
1 answer
109 views
Hi,

I have a requirement where i need to create the cloumns and the data in the columns dynamically, right now i am able to generate the columns, data on the report successfully, data is showing up in web browser.

But when i tried to export the report to either PDF or RTF files the dynamically binded data is not showing up in the exported files.

Need help on this

Thanks in advance.
Steve
Telerik team
 answered on 22 Nov 2012
3 answers
395 views
Hi all

I use two versions of the report

1. I use the fixed report, which I created through wizard NewItem -> Reporting -> TelerikReport Q3 2012. Was created a new class (FixedReport) and it was automatically inherited from: Telerik.Reporting.Report - he work perfectly.
In the class FixedReport I create my user function which also work well

2. Customer with Telerik Report Designer create a report-file with extension trdx. I load it into a byte array and work with it:

// ...
 
using (var reader = XmlReader.Create(stream, settings))
{
    var xmlSerializer = new ReportXmlSerializer();
 
    var reportDocument = (Telerik.Reporting.Report)xmlSerializer.Deserialize(reader);
     
    // ....
     
    return new InstanceReportSource { ReportDocument = reportDocument };
}

How do I make my object "reportDocument" was not an object of type Report, but was the object of my type, inherited from the Report (like my first version).

Please help

Steve
Telerik team
 answered on 22 Nov 2012
1 answer
97 views
I want to navigate from column of the report to other page with a parameter with field value (eg. =Fields.ProjAdvName) and also want a popup window rather than tab on next page as I redirect to other page with the column click. I searched it and tried it but didn't work sorry if my search is inadequate

Please help: While opening other aspx page, i need to pass parameter in url. This parameter name = value should come from column of telerik report.
Steve
Telerik team
 answered on 21 Nov 2012
2 answers
142 views
Hi steve,

I can't handle location X of report item.My report width is 800px. First, I set the one of report items location x=399px is not fit with my requirement.so I need to change the location x=400px and more(405px,410px,etc).But If I set X=400px and over,I got the report width(800px) is increased.I don't know why.so let me know how to do.

Thanks in advance..
Msyma
Steve
Telerik team
 answered on 21 Nov 2012
2 answers
81 views
When I try to add a Telerik Report to my VS2010 solution I am getting an error when gets to the step in the wizard where it asks to save the connection string.  After I build the connection string and test the connection I get the following error message as soon as I click next:

Exception of type 'Microsoft.VisualStudio.Web.Data.InternalException' was thrown.

If I uncheck "Yes, save this connections string with the following name:" it will continue and ask for the MDX select statement.
Mike
Top achievements
Rank 1
 answered on 21 Nov 2012
2 answers
124 views
I am using the code-behind for the report designer tool

Here is my output with only one x-axis label displaying, but I ultimately need all the labels to display and eventually get the series stacked. I've been busting my head against this.

Report Image

Here is my sample code to show my issue:

void chart1_NeedDataSource(object sender, EventArgs e)
        {
            chart1.PlotArea.Appearance.Dimensions.Margins = "5%";
            chart1.PlotArea.Appearance.Dimensions.Margins.Bottom.Type = Telerik.Reporting.Charting.Styles.UnitType.Percentage;
            chart1.PlotArea.Appearance.Dimensions.Margins.Bottom.Value = 15f;
            chart1.PlotArea.Appearance.Dimensions.Margins.Left.Type = Telerik.Reporting.Charting.Styles.UnitType.Percentage;
            chart1.PlotArea.Appearance.Dimensions.Margins.Left.Value = 15f;
            chart1.Legend.Visible = false;
            chart1.ChartTitle.Visible = false;
 
            chart1.PlotArea.XAxis.Appearance.LabelAppearance.RotationAngle = 45;
                                     
            chart1.PlotArea.XAxis.Clear();
            chart1.PlotArea.XAxis.AutoScale = false;
            chart1.PlotArea.XAxis.AddRange(1, 5, 1);
            chart1.PlotArea.XAxis[0].TextBlock.Text = "Test";
            chart1.PlotArea.XAxis[1].TextBlock.Text = "Test2";
            chart1.PlotArea.XAxis[2].TextBlock.Text = "Test3";
            chart1.PlotArea.XAxis[3].TextBlock.Text = "Test4";
            chart1.PlotArea.XAxis[4].TextBlock.Text = "Test5";
 
            chart1.Series.Add(new Telerik.Reporting.Charting.ChartSeries() { Name = "Test" });
 
            double[] testData = { 5, 6, 7, 8, 9 };
            foreach (double item in testData)
            {
                chart1.Series[0].AddItem(item);
            }
        }
Wayne
Top achievements
Rank 1
 answered on 21 Nov 2012
1 answer
89 views
Hi Team,

How would one go about changing the text font-size of the Reportviewer's ProgressText?  I need to make it smaller.

<telerik:ReportViewer ID="ReportViewer1" runat="server"

 

style="border:1px solid #ccc;" width="100%" height="100%"

 

OnClientResized="resizeViewer" ProgressText="Step 2: Preparing report..."

 

ZoomMode="Percent" ViewMode="PrintPreview"

 

ShowPrintPreviewButton="False" SkinsPath="Skins" Skin="Custom" Font-Size="9pt" />


I tried this but to no avail.

We're using:

ASP.Net 4.0
VS 2010
Telerik Reports – Q3-2012
Telerik AJAX Controls – Q3-2012

Thanks,
Steve
Peter
Telerik team
 answered on 21 Nov 2012
1 answer
94 views
hi!
 i have to bind data from many datatable into a single telerik report table or crosstab control. ie, i have to bind a dataset into a single reporting table control. how do i do this?
Peter
Telerik team
 answered on 21 Nov 2012
1 answer
205 views
I'm using Telerik Reporting Q1 2012. I can't get ride of the white space between the header and the detail section of the report. In design, there isn't any space at all. Here's screenshot! Any help?
Steve
Telerik team
 answered on 21 Nov 2012
4 answers
123 views
Hi

I want to change Report Viewer's background from White to image in Silverlight
(screenshot: http://www.freeimagehosting.net/avhxc)
Could you please tell me how can I change it?

Thanks!
Chien Cheng
Top achievements
Rank 1
 answered on 21 Nov 2012
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?