Interface ReportConfiguration

Describes the available configuration options for a report.

interface ReportConfiguration {
    allowEditing?: boolean;
    allowTableView?: boolean;
    export?: ReportExportConfiguration;
    facets?: ReportFacetsConfig[];
    menuActions?: {
        configureCallback?: (() => void);
        customDropdowns?: CustomDropdown[];
        showConfigure?: boolean;
    };
    reportViewCallback?: ((view) => void);
    reportViewFactSheetType?: string;
    reportViewOption?: ViewOption;
    tableConfigCallback?: (() => ReportTableConfig);
    toggleEditingCallback?: ((editingEnabled) => void);
    ui?: UIConfiguration;
}

Hierarchy

Properties

allowEditing?: boolean

@deprecated. Use UIButton to show the edit toggle.

Specifiy whether the user shall be able to edit the report. If the user toggles the editing mode the reporting framework calls ReportConfiguration.toggleEditingCallback to inform you about enabled or disabled edit mode.

allowTableView?: boolean

Defines whether the reporting framework should allow the user to switch into a table view that shows the data of the report. If not specified the default value is true, so the table view will be allowed if not explicitly disabled.

Hint: In order to configure the table (e.g. initially visible columns) for the report use ReportConfiguration.tableConfigCallback

The export options allow to influence the PDF or image export of a report.

Multiple facets configurations (ReportFacetsConfig) can be provided in order to allow the user to filter different aspects of your report.

menuActions?: {
    configureCallback?: (() => void);
    customDropdowns?: CustomDropdown[];
    showConfigure?: boolean;
}

Type declaration

  • Optional configureCallback?: (() => void)
      • This callback is invoked whenever the user wants to see / change the reports configuration.

        Returns void

  • Optional customDropdowns?: CustomDropdown[]

    Define custom dropdowns that are shown to the user and allow him or her to select different options that influcene how the report behaves or presents data.

    Deprecated

    Use elements in the UI configuration instead.

  • Optional showConfigure?: boolean

    Does the report provide configuration possibilities. If true: There will be a configuration action shown to the user, that triggers configureCallback.

    Default

    false.
    
reportViewCallback?: ((view) => void)

Type declaration

    • (view): void
    • This callback is invoked whenever the user changes the view of the report. It is also invoked, once the report view results are loaded during initialization.

      In order to define which views should be available to the user, you can specify a Fact Sheet type via ReportConfiguration.reportViewFactSheetType.

      Parameters

      Returns void

reportViewFactSheetType?: string

If defined the views that are applicable for this Fact Sheet type will be available for the user to be selected from a dropdown. Whenever the view is fetched from the backend the view data will be provided via ReportConfiguration.reportViewCallback.

reportViewOption?: ViewOption

Additional options that can be provided for the view calculation.

tableConfigCallback?: (() => ReportTableConfig)

Type declaration

toggleEditingCallback?: ((editingEnabled) => void)

Type declaration

    • (editingEnabled): void
    • @deprecated. Use UIButton click callback to invoke an action for enable/disable.

      This callback is invoked whenever the user enables or disables editing. The action to enable or disable editing is only visible when ReportConfiguration.allowEditing is set to true.

      Parameters

      • editingEnabled: boolean

      Returns void

ui defines the configuration of the UI elements to be displayed around the report.

Generated using TypeDoc