UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

22 lines (21 loc) 1.12 kB
/** * DevExpress HTML/JS Reporting (designer\bands\metadata\xrDetailReportBandMetaData.js) * Version: 24.2.6 * Build date: Mar 18, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { datasourcePrintOptionsGroup } from '../../controls/metadata/properties/metadataGroups'; import { detailReportBandScripts } from '../../controls/metadata/properties/scriptMetadata'; import { drillDownControl, drillDownDetailReportExpanded, height, level, pageBreak } from './bandsMetadata'; import { commonBandSerializationInfo } from './xrBandMetaData'; export const detailReportBandSerializationInfo = [ level, height, pageBreak, detailReportBandScripts, drillDownDetailReportExpanded, drillDownControl, ].concat(commonBandSerializationInfo, datasourcePrintOptionsGroup).filter((x) => x.propertyName !== 'bands').concat([{ propertyName: 'bands', modelName: 'Bands', array: true }]); export const popularPropertiesDetailReport = ['dataSource', 'dataMember', 'dataAdapter', 'filterString'];