Telerik Forums
Reporting Forum
1 answer
140 views
Hi..
I have a report with 3 columns.Is it now possible to order the data left to right.. instead of top down?
thx
Steve
Telerik team
 answered on 26 Sep 2011
1 answer
114 views
Hi..
Where and how do I run the conversion util to convert an ActiveReport to Telerik?
thx
Steve
Telerik team
 answered on 26 Sep 2011
1 answer
109 views
Hi,

I have a static class that I would like to use with ObjectDataSource. However, the class does not show up in the report wizard.

How do I get it to show up?
Ivan
Telerik team
 answered on 26 Sep 2011
5 answers
149 views
Hi
I'm trying out the new Reporting tool, but the tutorials doesn't fit Visual Studio 2010. In step 3 "Displaying Reports in the Windows Viewer" of the Quickstart the ReportViewer can't see any RDLC files even though the two projects are referenced as documented. Do I have to do something in addition to use external files in .NET 4.0?

Re
Dennis
Steve
Telerik team
 answered on 26 Sep 2011
1 answer
133 views
We are having trouble adding more than one ChartMarkedZone object in a chart implemented in a Windows Server 2003 and therefore with IIS6, the messages from a error says something like "Attempted to read or write protected memory. This is an indication That Often other memory is corrupt. "or else "A generic error occurred in GDI +"
This problem does not occur in IIS7 but we can not force the client to update the version of Internet Information Services.

ReportPrueba.cs
namespace SmartWork.ReportsManagementControl.ReportsLogic
{
    using System;
    using System.ComponentModel;
    using System.Drawing;
    using System.Windows.Forms;
    using Telerik.Reporting;
    using Telerik.Reporting.Drawing;
    using Telerik.Reporting.Charting;
    using System.Collections.Generic;

    /// <summary>
    /// Summary description for ReportPrueba.
    /// </summary>
    public partial class ReportPrueba : Telerik.Reporting.Report
    {
        public ReportPrueba()
        {
            //
            // Required for telerik Reporting designer support
            //
            InitializeComponent();
            chart_MesMinisterio.DataSource = null;
        }

        private void chart_MesMinisterio_NeedDataSource(object sender, EventArgs e)
        {
            List<PruebaObject> lstPrueba = new List<PruebaObject>();
            lstPrueba.Add(new PruebaObject() { Codigo = 1, Dia = 1, Value = 24 });
            lstPrueba.Add(new PruebaObject() { Codigo = 2, Dia = 5, Value = 48 });
            lstPrueba.Add(new PruebaObject() { Codigo = 3, Dia = 10, Value = 32 });

            chart_MesMinisterio.DataSource = lstPrueba;
            chart_MesMinisterio.Series[0].DataLabelsColumn = "Value";
            chart_MesMinisterio.Series[0].DataXColumn = "Dia";
            chart_MesMinisterio.Series[0].DataYColumn = "Value";
            chart_MesMinisterio.IntelligentLabelsEnabled = true;
            chart_MesMinisterio.Series[0].Appearance.ShowLabelConnectors = true;
            chart_MesMinisterio.Series[0].Appearance.LineSeriesAppearance.Width = 3;
            chart_MesMinisterio.Series[0].Appearance.LineSeriesAppearance.Color = Color.LightSteelBlue;

            chart_MesMinisterio.PlotArea.YAxis.AutoScale = false;
            chart_MesMinisterio.PlotArea.YAxis.MinValue = 0;
            chart_MesMinisterio.PlotArea.YAxis.MaxValue = 100;
            chart_MesMinisterio.PlotArea.XAxis.AutoScale = false;
            chart_MesMinisterio.PlotArea.XAxis.MinValue = 1;
            chart_MesMinisterio.PlotArea.XAxis.MaxValue = 31;
            chart_MesMinisterio.PlotArea.XAxis.Appearance.LabelAppearance.RotationAngle = 270;
            chart_MesMinisterio.PlotArea.Appearance.Dimensions.Margins.Bottom
                = new Telerik.Reporting.Charting.Styles.Unit(14, Telerik.Reporting.Charting.Styles.UnitType.Percentage);
            chart_MesMinisterio.PlotArea.Appearance.Dimensions.Margins.Top
                = new Telerik.Reporting.Charting.Styles.Unit(10, Telerik.Reporting.Charting.Styles.UnitType.Percentage);
            chart_MesMinisterio.PlotArea.Appearance.Dimensions.Margins.Left
                = new Telerik.Reporting.Charting.Styles.Unit(8, Telerik.Reporting.Charting.Styles.UnitType.Percentage);
            chart_MesMinisterio.PlotArea.Appearance.Dimensions.Margins.Right
                = new Telerik.Reporting.Charting.Styles.Unit(5, Telerik.Reporting.Charting.Styles.UnitType.Percentage);

            ChartMarkedZone maxMin = new ChartMarkedZone();
            maxMin.ValueStartY = 75;
            maxMin.ValueEndY = 75;
            maxMin.Label.TextBlock.Text = "Maximo: 75";
            maxMin.Appearance.Border.Color = Color.Green;
            maxMin.Appearance.Border.Width = 2;
            chart_MesMinisterio.PlotArea.MarkedZones.Add(maxMin);

            ChartMarkedZone avgMin = new ChartMarkedZone();
            avgMin.ValueStartY = 50;
            avgMin.ValueEndY = 50;
            avgMin.Label.TextBlock.Text = "Promedio: 50";
            avgMin.Appearance.Border.Color = Color.Red;
            avgMin.Appearance.Border.Width = 2;
            chart_MesMinisterio.PlotArea.MarkedZones.Add(avgMin);
        }
    }

    public class PruebaObject
    {
        public int Codigo { get; set; }
        public int Dia { get; set; }
        public int Value { get; set; }
    }
}

Steve
Telerik team
 answered on 26 Sep 2011
1 answer
75 views
Hi,

We create reports by filling dataset with values using stored procedures and formatting Telerik report using the data from dataset. We feel this method take quite long time to display the report. Instead is there any method to display reports directly from stored procedure to Telerik reports?

Thanks in advance
Ilyas.
Steve
Telerik team
 answered on 26 Sep 2011
4 answers
125 views
Hi,

Please help.

I created a statistics report with a sub-report that has a chart. The main report shows the client in each page and the sub-report shows the filings made by a particular client in different countries for different years in a series of pie charts. The report runs fine when using the regular "Preview" (see attached image). However, when using the "Html Preview", it shows only the first painted chart for all pages.

The attached image is actually 2 pages of the report in regular "Preview". The "Html Preview" shows only the first chart for all pages. The chart were created programmatically based on parameters passed from the main report.

Thank you.

Steve
Telerik team
 answered on 26 Sep 2011
0 answers
63 views
I want to insert a column dynamic  that I add rows in index-specific line,  add row 1 to row 10 of a numeric column
adalberto
Top achievements
Rank 1
 asked on 23 Sep 2011
2 answers
173 views
Can I change the height of the parameter section?  When it displays, their is a left to right scroll bar that hides the parameter drop down lists as shown in the attached image.

Also, is there a way to default the parameter values to "<select all>"?

Justin Lee
Top achievements
Rank 1
 answered on 22 Sep 2011
4 answers
1.6K+ views
Hi,

I am not able to open the link to see how to add the two columns in the Single Textbox in Telerik Reporting. Could you please help me to find the solution for this one ?


Thanks & Regards,
Shilpa
Shilpa
Top achievements
Rank 1
 answered on 22 Sep 2011
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?