@progress/kendo-angular-indicators
Version:
Kendo UI Indicators for Angular
27 lines (26 loc) • 896 B
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 horizontal and vertical alignment of the Badge
* ([see example](slug:alignandposition_badge#toc-alignment)).
*/
export interface BadgeAlign {
/**
* Specifies the vertical alignment of the Badge.
*
* The available options are:
* - `top` (Default)
* - `bottom`
*/
vertical?: 'top' | 'bottom';
/**
* Specifies the horiozntal alignment of the Badge.
*
* The available options are:
* - `start`
* - `end` (Default)
*/
horizontal?: 'start' | 'end';
}