@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.2 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';
/**
* Represents the context for the series highlight `toggle` function.
*/
export interface HighlightToggleArgs {
/**
* Provides a function that prevents the default highlight overlay from appearing.
*/
preventDefault: () => void;
/**
* Indicates whether the highlight should be displayed.
*/
show: boolean;
/**
* Specifies the visual element that needs to be highlighted.
*/
visual: drawing.Element;
/**
* Specifies the category of the point.
*/
category: any;
/**
* Specifies the data item associated with the point.
*/
dataItem?: any;
/**
* Specifies the value of the point.
*/
value: any;
/**
* Specifies the series to which the point belongs.
*/
series?: any;
}