@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
38 lines (37 loc) • 1.13 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the `weekStartDay` of a [CategoryAxisItemComponent]({% slug api_charts_categoryaxisitemcomponent %}).
*/
export declare enum WeekStartDay {
/**
* Specifies Sunday as the first day of the week.
*/
Sunday = 0,
/**
* Specifies Monday as the first day of the week.
*/
Monday = 1,
/**
* Specifies Tuesday as the first day of the week.
*/
Tuesday = 2,
/**
* Specifies Wednesday as the first day of the week.
*/
Wednesday = 3,
/**
* Specifies Thursday as the first day of the week.
*/
Thursday = 4,
/**
* Specifies Friday as the first day of the week.
*/
Friday = 5,
/**
* Specifies Saturday as the first day of the week.
*/
Saturday = 6
}