/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { DashType } from './dash-type'; /** * Specifies the appearance settings for the border lines * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/title#customizing-the-title-and-subtitle-appearance)). */ export interface Border { /** * Specifies the color of the border line. Accepts a valid CSS color string, including hex and rgb. */ color?: string; /** * Specifies the dash type of the border line. */ dashType?: DashType; /** * Specifies the width of the border line in pixels. */ width?: number; /** * Specifies the border opacity. */ opacity?: number; }