Telerik Forums
Reporting Forum
1 answer
188 views
Hi

I am using Telerik.Reporting, Version=7.1.13.802

  <configSections>
    <section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" allowLocation="true" allowDefinition="Everywhere"/>
  </configSections>
  <Telerik.Reporting>
    <Extensions>
      <Render>
        <Extension name="IMAGE" visible="true"/>
        <Extension name="PDF" visible="true"/>
        <Extension name="HTML" visible="false"/>
        <Extension name="MHTML" visible="false"/>
        <Extension name="CSV" visible="false"/>
        <Extension name="RTF" visible="false"/>
        <Extension name="XPS" visible="false"/>
        <Extension name="DOCX" visible="true"/>
        <Extension name="XLSX" visible="true"/>
        <Extension name="PPTX" visible="false"/>
      </Render>
    </Extensions>
  </Telerik.Reporting>

in web.config file

but not shown DOCX AND Excel 2007 (xlsx) in "Export to the selected format" dropdownlist.

How to do report viewer exporting setting?

Thank you
Peter
Telerik team
 answered on 01 Nov 2013
1 answer
853 views


I'm a beginner.
I need to insert Empty Row with Table Control like the right of picture I added.
How can I figure out this problem?
If possible, please give me a simple source.
Peter
Telerik team
 answered on 01 Nov 2013
4 answers
127 views
Hai
  i am using reporting for view the datas using sqldatasource,i write the query in sqldatasource and bind data in report viewer,my need is how to give alternate color for each row,(i.e) like in gridview alternater color for each row,same like i need in report also..like white,gray,white,gray,white,gray and so on....


Note: i am using reporting in windows application vb.net
And not double color in same row.one row is white and next row is gray and so.....

Pls reply me asap

Regards
  Aravind
Aravind
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 01 Nov 2013
3 answers
113 views

How do I extend the displayable area for Yaxis data in a graph?



I've seen reference to the chart object now being obsolete, so I've used graphs within my report.

However I need to extend the YAxis -and was hoping there was a property that I could set to something like...



myGraph.PlotArea.YAxisMode =
ChartYAxisMode.Extended





how can this be done ?





Stef
Telerik team
 answered on 31 Oct 2013
8 answers
719 views
Hello,

I have found lots of documentation on binding an XML datasource to a report when working in Visual Studio, but it is unclear how to use an XML datasource when using the standalone designer.  I believe I am supposed to use the Object Data Source type, but when I select this, there are no available data source types listed.

Thanks.
Stef
Telerik team
 answered on 31 Oct 2013
1 answer
101 views
I have a project using Telerik Reporting 2013Q2 sp1. When adding an EntityDataSource in the report designer, the configuration utility fires up.  I then choose a (valid) connection string and press next. The 'Choose a context' panel then takes more than 3 minutes to display my project's context. It is a relativelly small project and I cannot understand why it takes so long. When using hte ObjectDataSource object, the context along with the other database objects appears instantly.

Does anyone have any ideas on what is wrong here???

IvanY
Telerik team
 answered on 31 Oct 2013
1 answer
412 views
Hello,

Need to know one thing how do i vertical, and horizontally align report directly in the middle, or center in Telerik.Reporting Winforms 2013 Q3? I have attached a pick as of now it is align vertically to the left, and horizontally to the top.
Peter
Telerik team
 answered on 31 Oct 2013
4 answers
368 views
Hi,

I have one detail section within a group section containing one textbox bound to a datafield called projNr.
For each group item I would normally have several of rows with projNr.

How can I show these in a multicolumn table or such so that the number of pages decreases?
Is the table component my best shot or should I format my data in code behind into a htmltextbox instead?

Looking forward to an answer!

Thanks,
Per
Stef
Telerik team
 answered on 31 Oct 2013
2 answers
78 views
Hi Telerik,

I am new to the whole 'reporting' scene. But I'd like to layout a report that uses 2 data tables into a logical tabular format.

For example please consider the picture attached. I would like the table to grow sideways. The Subject column is data from 1 data table while the remaining property columns including adjustment columns are a flattened data table that was a result from a join.

I can't figure out how to data bind these two tables into a report table. Also I am having trouble understanding how the report will grow sideways and line up values correctly if (as the documentation suggests) I have to use a sub-report.

As you can see I'm a little bit more than confused here. Any help would be appreciated.
Craig
Top achievements
Rank 1
 answered on 30 Oct 2013
1 answer
158 views
Hi telerik team:

I've just updated to new telerik report libraries and I've discovered that ReportSource property doesn't exist and I don't know how to bind the report as old way. This is the code:

  private void RunReport(DataTable dt)
    {
        Report report;
        XmlReaderSettings settings;
        XmlReader xmlReader;
        ReportXmlSerializer xmlSerializer;

        settings = new XmlReaderSettings();
        settings.IgnoreWhitespace = true;
        using (xmlReader = XmlReader.Create(Server.MapPath(@"SupervisoryExceptions.trdx"), settings))
        {
            xmlSerializer = new ReportXmlSerializer();
            report = (Report)xmlSerializer.Deserialize(xmlReader);
        }
        report.ReportParameters["pDatabase"].Value = "Test Searching";
        report.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
        report.DataSource = dt;

        // Use the InstanceReportSource to pass the report to the viewer for displaying
        Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
        reportSource.ReportDocument = report;

   //This is the line that doesn't compile
        reportViewer1.ReportSource = reportSource;
    }
Saju Samuel
Top achievements
Rank 1
 answered on 30 Oct 2013
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?