UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

53 lines (52 loc) 1.44 kB
import { IgxAssigningSeriesStyleEventArgsBase } from "./igx-assigning-series-style-event-args-base"; import { toDoubleCollection, fromDoubleCollection } from "igniteui-angular-core"; /** * Represents event arguments class for the AssigningCategoryStyleEvent */ export class IgxAssigningSeriesShapeStyleEventArgsBase extends IgxAssigningSeriesStyleEventArgsBase { constructor() { super(); } /** * @hidden */ get i() { return this._implementation; } /** * Gets or sets stroke thickness to use for the current item. */ get strokeThickness() { return this.i.ae; } set strokeThickness(v) { this.i.ae = +v; } /** * Gets or sets stroke dash array to use for the current item. */ get strokeDashArray() { return fromDoubleCollection(this.i.af); } set strokeDashArray(v) { this.i.af = toDoubleCollection(v); } /** * Gets or sets corner radius X to use for the current item, if applicable. */ get radiusX() { return this.i.ac; } set radiusX(v) { this.i.ac = +v; } /** * Gets or sets corner radius Y to use for the current item, if applicable. */ get radiusY() { return this.i.ad; } set radiusY(v) { this.i.ad = +v; } }