igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
50 lines (49 loc) • 1.9 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, Number_$type, markType } from "igniteui-angular-core";
import { List$1 } from "igniteui-angular-core";
/**
* @hidden
*/
export let DataLegendSummaryResult = /*@__PURE__*/ (() => {
class DataLegendSummaryResult extends Base {
constructor(a, ..._rest) {
super();
this.c = 0;
this.f = null;
this.e = null;
this.d = null;
this.a = null;
a = (a == void 0) ? 0 : a;
switch (a) {
case 0:
{
this.c = NaN;
this.a = new List$1(Number_$type, 0).toArray();
this.d = "";
}
break;
case 1:
{
let c = _rest[0];
let d = _rest[1];
let e = _rest[2];
this.c = c;
this.f = null;
this.a = d;
this.d = e;
}
break;
}
}
static b() {
return new DataLegendSummaryResult(0);
}
}
DataLegendSummaryResult.$t = markType(DataLegendSummaryResult, 'DataLegendSummaryResult');
return DataLegendSummaryResult;
})();