UNPKG

igniteui-webcomponents-charts

Version:

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

77 lines (76 loc) 2.66 kB
import { __extends } from "tslib"; import { IgcAssigningSeriesStyleEventArgsBase } from "./igc-assigning-series-style-event-args-base"; import { toDoubleCollection, fromDoubleCollection } from "igniteui-webcomponents-core"; /** * Represents event arguments class for the AssigningCategoryStyleEvent */ var IgcAssigningSeriesShapeStyleEventArgsBase = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcAssigningSeriesShapeStyleEventArgsBase, _super); function IgcAssigningSeriesShapeStyleEventArgsBase() { return _super.call(this) || this; } Object.defineProperty(IgcAssigningSeriesShapeStyleEventArgsBase.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgcAssigningSeriesShapeStyleEventArgsBase.prototype, "strokeThickness", { /** * Gets or sets stroke thickness to use for the current item. */ get: function () { return this.i.ae; }, set: function (v) { this.i.ae = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgcAssigningSeriesShapeStyleEventArgsBase.prototype, "strokeDashArray", { /** * Gets or sets stroke dash array to use for the current item. */ get: function () { return fromDoubleCollection(this.i.af); }, set: function (v) { this.i.af = toDoubleCollection(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgcAssigningSeriesShapeStyleEventArgsBase.prototype, "radiusX", { /** * Gets or sets corner radius X to use for the current item, if applicable. */ get: function () { return this.i.ac; }, set: function (v) { this.i.ac = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgcAssigningSeriesShapeStyleEventArgsBase.prototype, "radiusY", { /** * Gets or sets corner radius Y to use for the current item, if applicable. */ get: function () { return this.i.ad; }, set: function (v) { this.i.ad = +v; }, enumerable: false, configurable: true }); return IgcAssigningSeriesShapeStyleEventArgsBase; }(IgcAssigningSeriesStyleEventArgsBase)); export { IgcAssigningSeriesShapeStyleEventArgsBase };