@progress/kendo-charts
Version:
Kendo UI platform-independent Charts library
24 lines (21 loc) • 486 B
TypeScript
import { Border } from './border.interface';
/**
* Represents the focus highlight border options.
*/
export interface FocusHighlightBorder extends Border {
/**
* The opacity of the focus highlight border.
*
* @default 1
*/
opacity?: number;
}
/**
* Represents the focus highlight options.
*/
export interface FocusHighlight {
/**
* The border options of the focus highlight.
*/
border?: FocusHighlightBorder;
}