igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
74 lines (73 loc) • 1.79 kB
JavaScript
import { CalloutContentUpdatingEventArgs as CalloutContentUpdatingEventArgs_internal } from "./CalloutContentUpdatingEventArgs";
/**
* Represents event arguments for updating content of callout layer
*/
export class IgrCalloutContentUpdatingEventArgs {
createImplementation() {
return new CalloutContentUpdatingEventArgs_internal();
}
get nativeElement() {
return this._implementation.nativeElement;
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* Gets data X-value associated with callout layer
*/
get xValue() {
return this.i.c;
}
set xValue(v) {
this.i.c = v;
}
/**
* Gets data Y-value associated with callout layer
*/
get yValue() {
return this.i.d;
}
set yValue(v) {
this.i.d = v;
}
/**
* Gets data item associated with callout layer
*/
get item() {
return this.i.item;
}
set item(v) {
this.i.item = v;
}
/**
* Gets or sets content displayed by callout layer
*/
get content() {
return this.i.a;
}
set content(v) {
this.i.a = v;
}
}