@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
23 lines (22 loc) • 752 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { Border, DashType } from '../common/property-types.js';
/**
* The border options of the tooltip.
*/
export interface TooltipBorder extends Omit<Border, 'dashType'> {
/**
*
* @hidden
*
* **Deprecated**. The `dashType` setting is ignored. Use the `border-style` CSS property instead.
*
* @deprecated
*/
dashType?: DashType;
}