@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.
39 lines (38 loc) • 1.48 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* 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 var WeekStartDay;
(function (WeekStartDay) {
/**
* Specifies Sunday as the first day of the week.
*/
WeekStartDay[WeekStartDay["Sunday"] = 0] = "Sunday";
/**
* Specifies Monday as the first day of the week.
*/
WeekStartDay[WeekStartDay["Monday"] = 1] = "Monday";
/**
* Specifies Tuesday as the first day of the week.
*/
WeekStartDay[WeekStartDay["Tuesday"] = 2] = "Tuesday";
/**
* Specifies Wednesday as the first day of the week.
*/
WeekStartDay[WeekStartDay["Wednesday"] = 3] = "Wednesday";
/**
* Specifies Thursday as the first day of the week.
*/
WeekStartDay[WeekStartDay["Thursday"] = 4] = "Thursday";
/**
* Specifies Friday as the first day of the week.
*/
WeekStartDay[WeekStartDay["Friday"] = 5] = "Friday";
/**
* Specifies Saturday as the first day of the week.
*/
WeekStartDay[WeekStartDay["Saturday"] = 6] = "Saturday";
})(WeekStartDay || (WeekStartDay = {}));