igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
147 lines (144 loc) • 4.71 kB
JavaScript
import { IgrSeries } from "./igr-series";
import { fromPoint, toPoint } from "igniteui-react-core";
/**
* Provides data for IgxDataChartComponent mouse button related events.
*/
var IgrChartMouseEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrChartMouseEventArgs() {
this.mounted = false;
}
Object.defineProperty(IgrChartMouseEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrChartMouseEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrChartMouseEventArgs.prototype.onImplementationCreated = function () {
};
IgrChartMouseEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrChartMouseEventArgs.prototype, "originalSource", {
/**
* Gets a reference to the object that raised the event.
*/
get: function () {
return this.i.originalSource;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrChartMouseEventArgs.prototype, "item", {
/**
* Gets the ItemsSource item associated with the current event.
*/
get: function () {
return this.i.item;
},
set: function (v) {
this.i.item = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrChartMouseEventArgs.prototype, "series", {
/**
* Gets the series associated with the current event.
*/
get: function () {
var r = this.i.series;
if (r == null) {
return null;
}
if (!r.externalObject) {
var e = IgrSeries._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
},
set: function (v) {
v == null ? this.i.series = null : this.i.series = v.i;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrChartMouseEventArgs.prototype, "plotAreaPosition", {
/**
* Gets the mouse position relative to the plot area.
*/
get: function () {
return fromPoint(this.i.plotAreaPosition);
},
set: function (v) {
this.i.plotAreaPosition = toPoint(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrChartMouseEventArgs.prototype, "chartPosition", {
/**
* Gets the mouse position relative to the chart.
*/
get: function () {
return fromPoint(this.i.chartPosition);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrChartMouseEventArgs.prototype, "chart", {
/**
* Gets the Chart associated with the current event.
*/
get: function () {
var r = this.i.chart;
if (r == null) {
return null;
}
return r.externalObject;
},
set: function (v) {
v == null ? this.i.chart = null : this.i.chart = v.i;
},
enumerable: false,
configurable: true
});
/**
* Provides a human readable description of the mouse button event.
*/
IgrChartMouseEventArgs.prototype.toString = function () {
var iv = this.i.toString();
return (iv);
};
/**
* Returns the x- and y- coordinates of the mouse pointer position, optionally evaluated
* against the origin of a supplied UIElement.
* @param relativeTo * Any UIElement derived object that is contained by the the engine plug-in
* and connected to the object tree. To specify the object relative to the overall the engine
* coordinate system, use a relativeTo value of null.
*/
IgrChartMouseEventArgs.prototype.getPosition = function (relativeTo) {
var iv = this.i.getPosition(relativeTo);
return fromPoint(iv);
};
return IgrChartMouseEventArgs;
}());
export { IgrChartMouseEventArgs };