FlexReport for UWP | ComponentOne
In This Topic
    Working with FlexReport
    In This Topic

    While FlexReport for UWP can be used in various scenarios, the key steps relevant in most of those scenarios are:

    1. Creating a report definition - This can be done using the C1FlexReportDesigner desktop application. The .FLXR report definition file created by the designer needs to be made available to the application's runtime, so that it can be loaded into the C1FlexReport component. Alternatively, the report definition can be created completely at runtime in code, using the rich object model of the C1FlexReport component.
    2. Providing data for the report - The report definition must be created keeping in mind the data sources available to the UWP version. At runtime, once the report definition has been loaded into the C1FlexReport component, the data must be accessible so the report can generate. Note that the report is generated completely on the client. See below for details on the available data sources.
    3. Render and output the report - Typically, the report will be generated for one of the following targets:
    See Also