@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
39 lines (38 loc) • 1.09 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { drawing } from '@progress/kendo-drawing';
/**
* The context for the highlight toggle function.
*/
export interface HighlightToggleArgs {
/**
* A function that can be used to prevent the showing of the default highlight overlay.
*/
preventDefault: () => void;
/**
* A Boolean value which indicates whether to show the highlight.
*/
show: boolean;
/**
* The visual element that needs to be highlighted.
*/
visual: drawing.Element;
/**
* The point category.
*/
category: any;
/**
* The point `dataItem`.
*/
dataItem?: any;
/**
* The point value.
*/
value: any;
/**
* The point series.
*/
series?: any;
}