igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
48 lines (47 loc) • 1.6 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 { Base, markType } from "igniteui-angular-core";
/**
* @hidden
*/
export let ProportionalRadialLabelContext = /*@__PURE__*/ (() => {
class ProportionalRadialLabelContext extends Base {
constructor() {
super(...arguments);
this._value = 0;
this._label = null;
this._percent = 0;
this._item = null;
}
get value() {
return this._value;
}
set value(a) {
this._value = a;
}
get label() {
return this._label;
}
set label(a) {
this._label = a;
}
get percent() {
return this._percent;
}
set percent(a) {
this._percent = a;
}
get item() {
return this._item;
}
set item(a) {
this._item = a;
}
}
ProportionalRadialLabelContext.$t = markType(ProportionalRadialLabelContext, 'ProportionalRadialLabelContext');
return ProportionalRadialLabelContext;
})();