UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

56 lines (55 loc) 1.43 kB
import { fromPoint, toPoint, ensureBool } from "igniteui-webcomponents-core"; /** * Provides data for IgxDataChartComponent mouse button related events. */ export class IgcPlotAreaMouseButtonEventArgs { /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } constructor() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } get chartPosition() { return fromPoint(this.i.chartPosition); } set chartPosition(v) { this.i.chartPosition = toPoint(v); } get plotAreaPosition() { return fromPoint(this.i.plotAreaPosition); } set plotAreaPosition(v) { this.i.plotAreaPosition = toPoint(v); } get manipulationOccurred() { return this.i.manipulationOccurred; } set manipulationOccurred(v) { this.i.manipulationOccurred = ensureBool(v); } /** * Gets the Chart associated with the current event. */ get viewer() { const r = this.i.viewer; if (r == null) { return null; } return r.externalObject; } set viewer(v) { v == null ? this.i.viewer = null : this.i.viewer = v.i; } }