@progress/kendo-vue-charts
Version:
41 lines (40 loc) • 1.15 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Specifies the `weekStartDay` of a [ChartCategoryAxisItem]({% slug api_charts_chartcategoryaxisitemprops %}).
*/
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
}