UNPKG

@progress/kendo-angular-excel-export

Version:

Kendo UI for Angular Excel Export component

25 lines (24 loc) 1.22 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ColumnBase } from './column-base'; import * as i0 from "@angular/core"; /** * Represents a group of columns in the Kendo UI Excel Export component. * Use this component to organize columns into groups. * * @example * ```html * <kendo-excelexport-column-group> * <kendo-excelexport-column field="ProductName"></kendo-excelexport-column> * <kendo-excelexport-column field="UnitPrice"></kendo-excelexport-column> * </kendo-excelexport-column-group> * ``` */ export declare class ColumnGroupComponent extends ColumnBase { parent?: ColumnBase; constructor(parent?: ColumnBase); static ɵfac: i0.ɵɵFactoryDeclaration<ColumnGroupComponent, [{ optional: true; host: true; skipSelf: true; }]>; static ɵcmp: i0.ɵɵComponentDeclaration<ColumnGroupComponent, "kendo-excelexport-column-group", never, {}, {}, never, never, true, never>; }