igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
28 lines (27 loc) • 1.23 kB
JavaScript
import { __extends } from "tslib";
import { IgrAssigningPolarStyleEventArgsBase } from "./igr-assigning-polar-style-event-args-base";
import { AssigningPolarMarkerStyleEventArgs as AssigningPolarMarkerStyleEventArgs_internal } from "./AssigningPolarMarkerStyleEventArgs";
/**
* Represents event arguments class for the AssigningPolarStyleEvent
*/
var IgrAssigningPolarMarkerStyleEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrAssigningPolarMarkerStyleEventArgs, _super);
function IgrAssigningPolarMarkerStyleEventArgs() {
return _super.call(this) || this;
}
IgrAssigningPolarMarkerStyleEventArgs.prototype.createImplementation = function () {
return new AssigningPolarMarkerStyleEventArgs_internal();
};
Object.defineProperty(IgrAssigningPolarMarkerStyleEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgrAssigningPolarMarkerStyleEventArgs;
}(IgrAssigningPolarStyleEventArgsBase));
export { IgrAssigningPolarMarkerStyleEventArgs };