@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
20 lines (19 loc) • 863 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 { DateFormatOptions } from "@progress/kendo-intl";
/**
* Represents the options for formatting the group headers and column headers in each Timeline Header.
*
*/
export interface TimelineHeaderDateFormat {
/**
* Sets the date format for the group header in the Timeline Header.
*/
groupHeaderDateFormat?: string | DateFormatOptions;
/**
* Sets the date format for the column header in the Timeline Header.
*/
columnHeaderDateFormat?: string | DateFormatOptions;
}