@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
41 lines (40 loc) • 1.18 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](https://www.telerik.com/kendo-react-ui/components/charts/api/chartcategoryaxisitem).
*/
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
}