UNPKG

igniteui-webcomponents-charts

Version:

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

28 lines (27 loc) 1.23 kB
import { __extends } from "tslib"; import { IgcAssigningPolarStyleEventArgsBase } from "./igc-assigning-polar-style-event-args-base"; import { AssigningPolarMarkerStyleEventArgs as AssigningPolarMarkerStyleEventArgs_internal } from "./AssigningPolarMarkerStyleEventArgs"; /** * Represents event arguments class for the AssigningPolarStyleEvent */ var IgcAssigningPolarMarkerStyleEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcAssigningPolarMarkerStyleEventArgs, _super); function IgcAssigningPolarMarkerStyleEventArgs() { return _super.call(this) || this; } IgcAssigningPolarMarkerStyleEventArgs.prototype.createImplementation = function () { return new AssigningPolarMarkerStyleEventArgs_internal(); }; Object.defineProperty(IgcAssigningPolarMarkerStyleEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgcAssigningPolarMarkerStyleEventArgs; }(IgcAssigningPolarStyleEventArgsBase)); export { IgcAssigningPolarMarkerStyleEventArgs };