Telerik Forums
Reporting Forum
1 answer
80 views
Hi,

I am in the process of examining whether using the Telerik Report service is going to meet my needs for this specific problem.  I have a Silverlight application which hosts the report viewer.

What I need is for each page to have a Title and some other text information but also have a 6x3 table with images that need to be generated on the fly. i.e. The images don't exist in a database or on a file system.  Each page would have a uniquely different set of images.

Is this something that the reporting supports?
Elian
Telerik team
 answered on 13 Apr 2012
8 answers
187 views
Hi all!

I'm designing a pie chart and would like to know if it's possible to "merge" two SeriesPalettes options (I liked some stuff from both) and also, would like to change their color order.

Is there anyway to get the appearance settings it sets when I choose them? If I had to "re-implement" them by hand, I believe I would have to set a whole lot of properties and "guess" the values for the colors.

Thanks in advance.

Rachel
Ves
Telerik team
 answered on 13 Apr 2012
1 answer
60 views
Hi Telerik!  Today I've been learning about grouping (in tables, to be specific).  Could you please add to your documentation that a table must first have the Detail group before you can add any other groups?  I spent an unfortunate amount of time thinking that a parent row grouping could be added *before* the Detail grouping.  Bummer, dude.  Sad panda.

So yeah, I like to think of myself as a little mine sweeper.  If I find a mine, I like to plant a little flag so that others don't have to walk over the mine.  Anyhoo... yeah, Detail first, then other table groups.
Steve
Telerik team
 answered on 12 Apr 2012
1 answer
242 views
Hello everyone!
The main functionalities  of my Website are to show and export (PDF & Excel) reports with a reportViewer of Silverlight. The reports are generated on the server side via WCF services. 
PDF Export works fine, but every time the Excel export is used, it generates an error (see screenshot).
I think the whole error message is: 

"This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms"

I tried to: 
  • apply the microsoft patch here, but it isn't a compatible Windows version.
  • reproduce the problem and changing the regedit values to true (explained here), couldn't reproduce it.
  • change the web.config file, and forcing the FIPS policy to false (explained here)
  • change the web.config file and add a new machineKey section (explained here)

None of these worked. I hope you could help me out. Any ideas for that problem?
Thanks
Raphael

PS: I am using the version Q3 2011 SP1 of Telerik Report 
Raphael
Top achievements
Rank 1
 answered on 12 Apr 2012
13 answers
574 views
A client has a report displaying transaction details for multiple accounts.  Each account takes up two or more pages depending upon the number of transactions beging reported.  Currently the report prints each page to a separate page of paper.  They want to switch to printing duplex to save paper.  The problem is that if there are three pages for a given account the next account starts on the back side of a printed page.  Does anyone know how we can make sure each account starts on a new page when printing to allow us to separate each account's details for mailing?

Thanks for any help you can provide...
Paul
Top achievements
Rank 2
 answered on 12 Apr 2012
1 answer
180 views
Hi,

We need to know if there is any workaround for printing each Table Group on New page. Basically our Report Datasource is already bind and having Group with setting Page Break After in Group Footer.  Report contains a Table having different Datasource also having Grouping. Now it is required that each Table Group should appear on next Page addition to existing Report group. 

Please advise any way to address the requirement...

Thanks,
devoas.
Steve
Telerik team
 answered on 12 Apr 2012
3 answers
141 views
I want to print multiple pages with a predesigned format (blank pages with no detail, only header and footer) and in the bottom I put the page number. for example, tell you the order number (parameter), how many pages I want to print, and when I click a button to show me or send me to print the format and page in top the order number I gave him and in the page footer print: page 1 of 5, etc..

Can we do this?

Thanks
Steve
Telerik team
 answered on 12 Apr 2012
3 answers
766 views

Good morning.

ASP.Net front end, telerik reporting, MS SQL 2008 Database.

I'm trying to pass in multiple pkeys as parameter into a telerik report tableadapter.  First, I tried passing them as integers, then I converted the integer keys to a string.  One integer works fine, one string item works fine, but when I try to pass in more than one, the report displays a blank page.  I tried a system array, blank page.  I tried an arraylist, blank page.

I would prefer to pass in the integers (not having to convert them) but at this point, I'll try anything.

First, the code from the app, second, the code from the report:

 ' run through the XML document passed by the client and post all of the  
        ' "checked" rows  
        inputXML = New XmlDocument  
        inputXML.LoadXml(Server.HtmlDecode(DETAILS_XML.Value))  
        rowNodes = inputXML.SelectNodes("ROOT/Receipt")  
        postCount = 0  
        confirmedKeys = New StringBuilder("")  
        'rKeyStr = CStr(confirmedKeys.ToString)  
        For Each rowNode In rowNodes  
            If rowNode("Print").InnerText = "Y" Then 
                postCount += 1  
                If confirmedKeys.Length > 0 Then 
                    confirmedKeys.Append(",")  
                    rKeyStr = rKeyStr & "," 
                End If 
                confirmedKeys.Append(rowNode("PKey").InnerText)  
                rKeyStr = rKeyStr & rowNode("PKey").InnerText  
            End If 
            '  
        Next 
        '  
        '  
        sKey = Session(SESSION_SKEY)  
        '  
        '  
        btnPost.Visible = True 
        '  
        '**********************************************************************************  
        rvReceipt.Report = New SCOReports.Receipt(sKey, rKeyStr)  
        rvReceipt.RefreshReport()  
        rvReceipt.Visible = True 
        '**********************************************************************************  
 
'  REPORT CODE IS NEXT....  
 
Public Sub New(ByVal sk, ByVal rKeys)  
        InitializeComponent()  
 
        'TODO: This line of code loads data into the 'DatReceipt.datReceiptTable' table. You can move, or remove it, as needed.  
        Try 
            Me.DatReceiptTableAdapter1.Fill(Me.DatReceipt.datReceiptTable, sk, rKeys)  
        Catch ex As System.Exception  
            'An error has occurred while filling the data set. Please check the exception for more information.  
            System.Diagnostics.Debug.WriteLine(ex.Message)  
        End Try 
 
 
        'TODO: This line of code loads data into the 'DatRecDet1.DatRecDetTable' table. You can move, or remove it, as needed.  
        Try 
            Me.DatRecDetTableAdapter2.Fill(Me.DatRecDet1.DatRecDetTable)  
        Catch ex As System.Exception  
            'An error has occurred while filling the data set. Please check the exception for more information.  
            System.Diagnostics.Debug.WriteLine(ex.Message)  
        End Try 
    End Sub 
End Class 
 
'  THE SQL FOR THE TABLE/TABLEADAPTER...  
SELECT     RM.PKEY, RM.SKEY, RM.REC_NBR, RM.REC_DATE, RM.REC_CASH, RM.REC_CHECK, RM.REC_CREDIT, RM.AMOUNT, RM.RECEIVEDBY,   
                      RM.CHKREF, S.LNAME + ', ' + S.FNAME + ' ' + ISNULL(S.MNAME, '') AS STUDNAME, ISNULL(P.FNAME, '') + ' ' + ISNULL(P.LNAME, '') AS PNAME,   
                      SCH.NAME AS SCH_NAME, D.TAXID, RM.PKSTR  
FROM         RECEIPTMASTER AS RM INNER JOIN  
                      STUDENT AS S ON RM.STUDKEY = S.PKEY LEFT OUTER JOIN  
                      PARENT AS P ON S.PRI_PGKEY = P.PKEY INNER JOIN  
                      SCHOOLS AS SCH ON RM.SKEY = SCH.PKEY INNER JOIN  
                      DISTRICT AS D ON SCH.DISTRICTKEY = D.PKEY  
WHERE     (RM.STATUS = 'C') AND (RM.PEND_REC_NBR = 'PRINT') AND (RM.SKEY = @SKEY) AND (RM.PKSTR IN (@Keys))  
ORDER BY RM.REC_NBR  
 

Thanks in advance for taking a look.

LEBREW

Randa
Top achievements
Rank 1
 answered on 11 Apr 2012
4 answers
143 views
I have tried to set the changes to my line chart programatically.  This is the code I have edited inside of my .cs file.  I pushed through the changes, but nothing has shown up on my work.  I am guessing that these strings do not change the colors of the lines, then?


Telerik.Reporting.Charting.ChartSeries chartSeries1 = new Telerik.Reporting.Charting.ChartSeries();
Telerik.Reporting.Charting.ChartSeries chartSeries2 = new Telerik.Reporting.Charting.ChartSeries();
Telerik.Reporting.Charting.ChartSeries chartSeries3 = new Telerik.Reporting.Charting.ChartSeries();
Telerik.Reporting.Charting.ChartSeries chartSeries4 = new Telerik.Reporting.Charting.ChartSeries();
chartSeries1.Appearance.FillStyle.MainColor = System.Drawing.Color.Blue;
chartSeries2.Appearance.FillStyle.MainColor = System.Drawing.Color.Red;
chartSeries3.Appearance.FillStyle.MainColor = System.Drawing.Color.Green;
chartSeries4.Appearance.FillStyle.MainColor = System.Drawing.Color.Yellow;
Matt
Top achievements
Rank 1
 answered on 11 Apr 2012
5 answers
138 views
Good Morning,

I've been working on a line chart for a project, and managed to solve all o fmy questions, save one.  I changed the font size of the chart's X and Y axis labels to 15, then hit save.  I noticed that on the designer, the changes were shown.  However, when I hit preview to test those changes, the font remains the same 8.25 it was before.  The properties field shows the font size I asked for as well.  Needless to say, I am little confused as to why Telerik is refusing to accept changes.  Does this have to happen programatically, instead of the properties interface?

Thanks!
Steve
Telerik team
 answered on 11 Apr 2012
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?