igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
27 lines (26 loc) • 1.27 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 { FormatRadialGaugeLabelEventArgs } from "./FormatRadialGaugeLabelEventArgs";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
export let AlignRadialGaugeLabelEventArgs = /*@__PURE__*/ (() => {
class AlignRadialGaugeLabelEventArgs extends FormatRadialGaugeLabelEventArgs {
constructor() {
super(...arguments);
this.width = 0;
this.height = 0;
this.offsetX = 0;
this.offsetY = 0;
this.brush = null;
this.font = 0;
}
}
AlignRadialGaugeLabelEventArgs.$t = markType(AlignRadialGaugeLabelEventArgs, 'AlignRadialGaugeLabelEventArgs', FormatRadialGaugeLabelEventArgs.$);
return AlignRadialGaugeLabelEventArgs;
})();