igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
25 lines (24 loc) • 1.21 kB
JavaScript
/*
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 { FormatLinearGraphLabelEventArgs } from "./FormatLinearGraphLabelEventArgs";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
export let AlignLinearGraphLabelEventArgs = /*@__PURE__*/ (() => {
class AlignLinearGraphLabelEventArgs extends FormatLinearGraphLabelEventArgs {
constructor() {
super(...arguments);
this.width = 0;
this.height = 0;
this.offsetX = 0;
this.offsetY = 0;
}
}
AlignLinearGraphLabelEventArgs.$t = markType(AlignLinearGraphLabelEventArgs, 'AlignLinearGraphLabelEventArgs', FormatLinearGraphLabelEventArgs.$);
return AlignLinearGraphLabelEventArgs;
})();