scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
12 lines (11 loc) • 565 B
TypeScript
import { Point } from "../../../Core/Point";
import { ModifierMouseArgs } from "../../ChartModifiers/ModifierMouseArgs";
import { AnnotationBase } from "./AnnotationBase";
export declare class AnnotationClickEventArgs {
sender: AnnotationBase;
/** The mouse arguments for the click event */
mouseArgs: ModifierMouseArgs;
/** The coordinates where the click took place, relative to the top left of the annotation */
relativeCoords: Point;
constructor(sender: AnnotationBase, mouseArgs: ModifierMouseArgs, relativeCoords: Point);
}