/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BaseEvent } from './base-event'; import { EventSeriesOptions } from '../api-types/event-series-options.interface'; /** * Arguments for the `noteHover` event. */ export declare class NoteHoverEvent extends BaseEvent { /** * The data point category. Available only for the Categorical charts (Bar, Line, Area, and similar). */ category: any; /** * The data item of the point note. */ dataItem: any; /** * An object containing the note series options. */ series: EventSeriesOptions; /** * The note value. */ value: any; /** * The note visual element. */ visual: any; /** * @hidden */ constructor(e: any, target: any); }