Browse By Tags

  • Customizing Menu within the Report Preview control

    Hello,

     

    Is there are way to customize the xamReportPreview control's menu (i.e., add or remove certain buttons like the magnifying glass)?

     

    Thanks

  • Sample implementation of IEmbeddedVisualPaginator

    I've been looking for a sample or reference implementation of IEmbeddedVisualPaginator, but no luck. Do you have one available somewhere?

  • Any existing and pre coded visual reporting framwork with Infragistics componenets for WPF

    Hi,

    I need to know is there any pre-coded component for reporting in WPF using Infragistics components?

    I am asking this because we wanted to integrate Bar charts of infragistics into our application for reporting propose, but we've found many other…

  • System.Printing.PrintQueueException: PrintTicket provider failed to retrieve PrintCapabilities

    We're using the Report class to print the contents of a XamDataGrid, using a method within a subclass of XamDataGrid that basically looks like this:

    Report report1 = new Report();
    report1.Sections.Add(new EmbeddedVisualReportSection(this));
    report1…

  • chart is not rendered in report without being displayed before

    Hey there, i want to include a chart in my report. Therefore i created a UserControl containing all layout stuff i want to have in my xps/print. It is just a simple line-chart and in the constructor i bind to sample data. If i display this control in…

  • automatically print a report created by the report exporter (asp.net)

    I'm looking for help with automatically printing the pdf that is created from my .igr when my web page runs. I use a combination of exporter and memorystream to write the pdf to a server folder. (see my previous forum post titled "Emailing a report created…

  • ShowPrintDialog crashes when called from background thread even though thread is STA

    Here is the error.

    The calling thread cannot access this object because a different thread owns it.

    here is an example project.

    The LogIn window starts a new thread to load all the data and main gui and also hands updates to a splash screen. Everything…

  • Exporting a report

    When I export a report and set PageOrientation to Landscape

    it export in Portrait orientation

  • DataGrid Column does not resize when printing

    Hi,

    I have a XamDataGrid with 3 columns. The width of theses columns defined in the FieldSettings are:

    Column 1: 50
    Column 2: 70
    Column 3: *

    The horizontal pagination mode of the report settings is set to:  HorizontalPaginationMode.Scale

    Unfortunately…

  • Multiple sections on one page

    I am trying to setup and print a Report that displays a Visual Element (Canvas with bitmap and some other graphical and text elements) and below it a data  grid (using a XamDataGrid).

    I need for both the Visual element and the data grid to print on the…

  • Enable the end user to select orientation from DocumentViewer

    Hi,

    I am trying to use the XamReportPreview with the XamDataGrid, and the grid is shown correctly in the preview.

    But is it possible to enable the user to select the orientation of the report from the DocumentViewer?

    Like an extra statebutton?

     

  • Report preview initial position

    Hi

    When i generate a preview for my datagrid the initial position is not on the top left. Somehow there's a margin?

  • Incorrect rows wrapping between pages

    Hello,

    I created report, set PageFooterTemplate, PageHeaderTemplate and PageContentTemplate. Then was added section which contains XamDataGrid. In  PageHeaderTemplate there is a trigger which manages the content of Header depending page number (on first…

  • Slow performance when rendering reports mosaic/vertical mode for big grids

    Hello Infragistics,

    I think the reporting feature that comes with the Infragistics WPF toolkit is a great idea. The API is easy to use and the xamFeatureBrowser explains the rest. Basically it's exactly what's needed to create some sophisticated reports…

  • Batch printing with specified ranges

    Hi

    I want to print some data and depending on the page count i would send multiple print orders to the printer. Eg. I've created a report from my data that resulted in 200 pages. I then would programmatically create 4 print orders if i've set the…

  • XamReportPreview crahses and throws out of memory exception

    Hello,

    I have used XamReportPreview control for previewing Grid and chart generated as a report. so that user can visualize the print format of grid and chart together. Now the problem is when my grid is binded with lots of data in form of thousands…

  • Is a page rendered for print after the paginator executes MoveToPosition?

    I've got the following code in an implementation of IEmbeddedVisualPaginator:

             public bool MoveToNextPage()
            {
                if (_reportSettings.PageRange.PageTo > 0 && _logicalPageNumber >= _reportSettings.PageRange.PageTo)
                    return false;

                IEnumerable…

  • How to Print XamDataGrid containing ListBox

    Hello,

    I am using XamDataGrid and try to print it using PrintReport.

    I create a report and add my grid within a EmbeddedVisualReportSection. Everything is ok excepted two columns which display listbox. Print generates ScrollBar and i don't want this…

  • Report ArgumentException

    Hi,

    I try print from report  but i get  ArgumentException: "An item with the same key has already been added."   i can't understand  why,

    I  use  this code:

    EmbeddedVisualReportSection myXamDataGridReport =                   
     
    new EmbeddedVisualReportSection(grvEvents…

  • ReportView problems

    Hi,

    When I generate a reportview, it is this way.

    But de next page is ok.


    Could someone help me. how to put the height and width fixeds?

     

    Thanks

  • Problem generating report preview

    I've encountered a very strange problem with the xamReportPreview and the GeneratePreview function. I have a xamDataGrid with approx 500 rows. I create a Report object for the grid, via an EmbeddedVisualReportSection object, and pass this object into…

  • How to print and/or export an rtf formatted document?

    Is there any solution to print and/or export an rtf formatted document page by page?

  • How to print FlowDocument

    Hi all,

    i am just looking for a reporting tool, in order to print out a flowdocument.

    The main issue is, that my app will have more than 100 flowdocuments which are similar the same on screen and printed paper. And therefor i am looking for the most…