igniteui-angular-charts
Version: 
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
31 lines (30 loc) • 1.22 kB
TypeScript
import { IgPoint } from "igniteui-angular-core";
import { IgxSeriesViewerComponent } from "./igx-series-viewer-component";
import { PlotAreaMouseButtonEventArgs as PlotAreaMouseButtonEventArgs_internal } from "./PlotAreaMouseButtonEventArgs";
/**
 * Provides data for IgxDataChartComponent mouse button related events.
*/
export declare class IgxPlotAreaMouseButtonEventArgs {
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): PlotAreaMouseButtonEventArgs_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    get chartPosition(): IgPoint;
    set chartPosition(v: IgPoint);
    static ngAcceptInputType_chartPosition: IgPoint | string;
    get plotAreaPosition(): IgPoint;
    set plotAreaPosition(v: IgPoint);
    static ngAcceptInputType_plotAreaPosition: IgPoint | string;
    get manipulationOccurred(): boolean;
    set manipulationOccurred(v: boolean);
    static ngAcceptInputType_manipulationOccurred: boolean | string;
    /**
     * Gets the Chart associated with the current event.
    */
    get viewer(): IgxSeriesViewerComponent;
    set viewer(v: IgxSeriesViewerComponent);
}