@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
15 lines (14 loc) • 649 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { GanttColumnBase } from '../../columns/column-base.component';
/**
* Provides the arguments for the `columnVisibilityChange` event.
*/
export interface ColumnVisibilityChangeEvent {
/**
* Contains the columns whose visibility changes.
*/
columns: GanttColumnBase[];
}