UNPKG

igniteui-webcomponents-charts

Version:

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

30 lines (29 loc) 1.5 kB
import { __extends } from "tslib"; import { IgcAssigningCategoryStyleEventArgsBase } from "./igc-assigning-category-style-event-args-base"; import { AssigningCategoryMarkerStyleEventArgs as AssigningCategoryMarkerStyleEventArgs_internal } from "./AssigningCategoryMarkerStyleEventArgs"; /** * Represents event arguments class for the AssigningCategoryStyleEvent * * The `assigningCategoryMarkerStyle` event fired to allow you to override the style of markers for the items in a category or financial series. Only fires if you set isCustomCategoryMarkerStyleAllowed to true for a series. */ var IgcAssigningCategoryMarkerStyleEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcAssigningCategoryMarkerStyleEventArgs, _super); function IgcAssigningCategoryMarkerStyleEventArgs() { return _super.call(this) || this; } IgcAssigningCategoryMarkerStyleEventArgs.prototype.createImplementation = function () { return new AssigningCategoryMarkerStyleEventArgs_internal(); }; Object.defineProperty(IgcAssigningCategoryMarkerStyleEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgcAssigningCategoryMarkerStyleEventArgs; }(IgcAssigningCategoryStyleEventArgsBase)); export { IgcAssigningCategoryMarkerStyleEventArgs };