igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
101 lines (100 loc) • 2.64 kB
JavaScript
import { IgcSeriesComponent } from "./igc-series-component";
import { fromPoint, toPoint, ensureBool } from "igniteui-webcomponents-core";
/**
* Represents event arguments for chart's SeriesAdded and SeriesRemoved events
*
* The `DomainChartSeriesPointerEventArgs` class provide events for chart's SeriesAdded and SeriesRemoved.
*
* `SeriesPointerDown` get fired when the pointer is press down over a Series.
*
* ```ts
* this.chart.seriesPointerDown = this.chart_seriesPointerDown();
* ```
*/
export class IgcDomainChartSeriesPointerEventArgs {
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* Gets the series hit by the pointer.
*
* Use the `Series` property to get the series.
*
* ```ts
* var series= args.series;
* ```
*/
get series() {
const r = this.i.series;
if (r == null) {
return null;
}
if (!r.externalObject) {
let e = IgcSeriesComponent._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
}
set series(v) {
v == null ? this.i.series = null : this.i.series = v.i;
}
/**
* Gets the item hit by the pointer.
*
* Use the `Item` property to get the items.
*
* <https://www.infragistics.com/help/wpf/infragisticswpf.controls.charts.xamdatachart~infragistics.controls.charts.domainchartseriespointereventargs~item>
*
* ```ts
* var Chartitem = args.item;
* ```
*/
get item() {
return this.i.item;
}
set item(v) {
this.i.item = v;
}
/**
* Gets the pointer position relative to the plot area.
*/
get plotAreaPosition() {
return fromPoint(this.i.plotAreaPosition);
}
set plotAreaPosition(v) {
this.i.plotAreaPosition = toPoint(v);
}
/**
* Gets the mouse position relative to the chart.
*/
get chartPosition() {
return fromPoint(this.i.chartPosition);
}
/**
* Gets or sets whether to cancel series selection.
*/
get cancelSelection() {
return this.i.cancelSelection;
}
set cancelSelection(v) {
this.i.cancelSelection = ensureBool(v);
}
}