UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

47 lines (46 loc) 1.58 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { IgxFormatLinearGraphLabelEventArgs } from "./igx-format-linear-graph-label-event-args"; import { AlignLinearGraphLabelEventArgs as AlignLinearGraphLabelEventArgs_internal } from "./AlignLinearGraphLabelEventArgs"; /** * Represents event argument for AlignLinearGraphLabel. */ export class IgxAlignLinearGraphLabelEventArgs extends IgxFormatLinearGraphLabelEventArgs { createImplementation() { return new AlignLinearGraphLabelEventArgs_internal(); } get i() { return this._implementation; } constructor() { super(); } get width() { return this.i.width; } set width(value) { this.i.width = value; } get height() { return this.i.height; } set height(value) { this.i.height = value; } get offsetX() { return this.i.offsetX; } set offsetX(value) { this.i.offsetX = value; } get offsetY() { return this.i.offsetY; } set offsetY(value) { this.i.offsetY = value; } }