Browse By Tags

  • 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…

  • 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?

  • 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…

  • 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…

  • 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…

  • 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…

  • 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?