UNPKG

devexpress-reporting

Version:

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

26 lines (25 loc) 972 B
/** * DevExpress HTML/JS Reporting (designer\bands\xrGroupBand.d.ts) * Version: 20.2.13 * Build date: Apr 10, 2023 * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { BandViewModel } from './xrBand'; import { GroupFieldModel } from './groupfield'; import { ElementViewModel } from '@devexpress/analytics-core/analytics-elements'; import { ModelSerializer } from '@devexpress/analytics-core/analytics-utils'; export interface ISortingSummary { enabled: boolean; Function: string; fieldName: string; ignoreNullValues: string; sortOrder: string; getPath: (propertyName: string) => string; } export declare class GroupHeaderBand extends BandViewModel { dispose(): void; constructor(band: any, parent: ElementViewModel, serializer?: ModelSerializer); groupFields: ko.ObservableArray<GroupFieldModel>; sortingSummary: ISortingSummary; }