[]
The following sections describe the module: report/types.
Re-exports AnimationOptions
Re-exports ApplicationInfo
Re-exports BarcodeSymbology
Re-exports CreateReportOptions
Re-exports CreateReportResult
Re-exports CreateReportSuccessResult
Re-exports DataSetInfo
Re-exports DesignerApi
Re-exports DesignerOptions
Re-exports DesignerOptionsBase
Re-exports DesignerOptionsOther
Re-exports DisplayType
Re-exports ExportOptions
Re-exports ExportResult
Re-exports ExportSettings
Re-exports ExportSettingsCsv
Re-exports ExportSettingsDocx
Re-exports ExportSettingsExcel
Re-exports ExportSettingsExceldata
Re-exports ExportSettingsHtml
Re-exports ExportSettingsImage
Re-exports ExportSettingsJson
Re-exports ExportSettingsMap
Re-exports ExportSettingsPdf
Re-exports ExportSettingsTxt
Re-exports ExportSettingsXml
Re-exports ExportType
Re-exports HelpInfo
Re-exports HoverChartAnimationOptions
Re-exports HoverTableAnimationOptions
Re-exports InitViewerOptions
Re-exports InitViewerOptionsBase
Re-exports InitViewerOptionsOther
Re-exports LoadChartAnimationOptions
Re-exports Locale
Re-exports MakeTitleOptions
Re-exports OnErrorOptions
Re-exports OnSavedOptions
Re-exports OpenReportOptions
Re-exports OpenReportResult
Re-exports OpenReportSuccessResult
Re-exports OverridableToolbarButton
Re-exports PageViewOptions
Re-exports PanelsLocation
Re-exports ParamPanelShowMode
Re-exports Parameter
Re-exports ParameterPanelOptions
Re-exports ProductInfo
Re-exports ReportInfo
Re-exports ReportOperation
Re-exports ReportOperationErrorResult
Re-exports ReportingApi
Re-exports SaveReportOptions
Re-exports SaveReportResult
Re-exports SaveReportSuccessResult
Re-exports SearchOptions
Re-exports SearchResult
Re-exports Units
Re-exports UpdateRouteOptions
Re-exports ViewMode
Re-exports Viewer
Re-exports ViewerApi
Renames and re-exports OpenReportOptions
Re-exports ViewerOptions
Renames and re-exports ReportInfo
Re-exports ZoomMode
Ƭ CreateReportDesignerOptions: commonConfig & CreateReportDesignerOptionsBase & PartialDeepDesignerOptionsOther
This type specifies the options passed to the WynIntegration.createReportDesigner() function.
Ƭ CreateReportDesignerOptionsBase: Object
This type specifies the base options from the CreateReportDesignerOptions type.
Name | Type |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| { |
|
|
| |
|
|
applicationTitle?: string
Set your custom application title to be displayed in designer UI instead of the predefined title.
Example
applicationTitle: 'Application Title',applicationTitleCompact?: string
Set your custom compact application title to be displayed in designer UI instead of the predefined title. It will be displayed in places where there is not enough space for a full title.
Example
applicationTitleCompact: 'App Title',isReportTemplate?: boolean
Set whether a report or a template is opened. This is relevant only when reportId is defined.
Example
isReportTemplate: true,language?: string
Set the language of the user interface, the acceptable values are: 'zh', 'en', 'en-gb', 'zh-tw', 'pl'. Also, you can specify a custom language here in case it is uploaded to the Admin portal.
Example
language: 'zh',productTitle?: string
Set your custom product title to be displayed in About dialog.
Example
productTitle: 'Product Title',productVersion?: string
Set your custom product version to be displayed in About dialog. This is relevant only when productTitle is defined.
Example
productVersion: '3.2.1',readOnly?: boolean
Set whether a report or a template is opened in the read-only mode in order to prevent saving any changes. By default, this option is disabled so saving a report or template changes is allowed.
Example
readOnly: true,reportId?: string | null
Set the report id to be opened.
Example
reportId: 'your-report-id',reportVersion?: number | null
Set the report version to be opened. If not specified, the latest version is opened. This is relevant only when reportId is defined.
Example
reportVersion: 8,reportViewer?: { disabled?: boolean ; options?: PartialDeepViewerOptionsOther }
Set the built-in viewer availability and viewer options.
reportViewer.disabled?: boolean
Set whether the built-in viewer is available in designer.
Example
disabled: true,reportViewer.options?: PartialDeepViewerOptionsOther
Set the built-in viewer options. This is relevant only when viewer is available.
Example
options: { isFullscreen: true },theme?: string
Set the Wyn UI theme to be used by designer. Predefined themes are: 'default', 'ars', 'blue', 'dark-forest', 'forest', 'green', 'light', 'minimal-blue', 'red', 'warm-light'. Also, you can specify a custom theme here in case it is uploaded to the Admin portal. If theme is not specified, the Wyn user preferences are applied.
Example
theme: 'forest',Ƭ CreateReportViewerOptions: commonConfig & CreateReportViewerOptionsBase & PartialDeepViewerOptionsOther
This type specifies the options passed to the WynIntegration.createReportViewer() function.
Ƭ CreateReportViewerOptionsBase: Object
This type specifies the base options from the CreateReportViewerOptions type.
Name | Type |
|---|---|
|
|
|
|
| |
|
|
language?: string
Set the language of the user interface, the acceptable values: 'zh', 'en', 'en-gb', 'zh-tw', 'pl'. Also you can specify a custom language here in case it is uploaded to the Admin portal.
Example
language: 'zh',reportId?: string | null
Set the report id to be previewed.
Example
reportId: 'your-report-id',reportParameters?: Parameter[]
Set the array of name/values pairs describing parameters and their values used to preview the report. This is relevant only when reportId is defined.
Example
reportParameters: [
{ name: 'StringParameter', values: ['abc'] },
{ name: 'IntegerMultivalueParameter', values: [1, 2, 3] },
{ name: 'BooleanParameter', values: [true] },
],theme?: string
Set the Wyn UI theme to be used by viewer. Predefined themes are: 'default', 'ars', 'blue', 'dark-forest', 'forest', 'green', 'light', 'minimal-blue', 'red', 'warm-light'. Also you can specify a custom theme here in case it is uploaded to the Admin portal. If theme is not specified, the Wyn user preferences are applied.
Example
theme: 'forest',Ƭ LocalizationResourceBundle: Object
Name | Type |
|---|---|
|
|
|
|
ns: string
resources: Record<string, any>