@progress/kendo-angular-indicators
Version:
Kendo UI Indicators for Angular
28 lines (27 loc) • 1.02 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the horizontal and vertical alignment options for the Badge component.
*
* For usage examples, see the [Badge Alignment documentation](https://www.telerik.com/kendo-angular-ui/components/indicators/badge/align-and-position#alignment).
*/
export interface BadgeAlign {
/**
* Specifies the vertical alignment of the Badge.
*
* The available options are:
* - `top` (Default)
* - `bottom`
*/
vertical?: 'top' | 'bottom';
/**
* Specifies the horizontal alignment of the Badge.
*
* The available options are:
* - `start`
* - `end` (Default)
*/
horizontal?: 'start' | 'end';
}