igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
44 lines (43 loc) • 2.04 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 { __extends } from "tslib";
import { Base, Number_$type, String_$type, markType } from "igniteui-angular-core";
import { DataLegendIndexDictionary$1 } from "./DataLegendIndexDictionary$1";
import { DataAbbreviation } from "./DataAbbreviation";
import { DataLegendSeriesValueInfo } from "igniteui-angular-core";
import { List$1 } from "igniteui-angular-core";
/**
* @hidden
*/
var DataLegendColumn = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataLegendColumn, _super);
function DataLegendColumn() {
var _this = _super.call(this) || this;
_this.g = false;
_this.i = 0;
_this.f = null;
_this.e = null;
_this.b = null;
_this.d = null;
_this.a = null;
_this.c = null;
_this.h = null;
_this.h = new List$1(Number_$type, 0);
_this.e = new DataLegendIndexDictionary$1(Number_$type);
_this.f = new DataLegendIndexDictionary$1(String_$type);
_this.d = new DataLegendIndexDictionary$1(String_$type);
_this.b = new DataLegendIndexDictionary$1(String_$type);
_this.d = new DataLegendIndexDictionary$1(String_$type);
_this.a = new DataLegendIndexDictionary$1(DataAbbreviation.$);
_this.c = new DataLegendIndexDictionary$1(DataLegendSeriesValueInfo.$);
_this.g = false;
return _this;
}
DataLegendColumn.$t = markType(DataLegendColumn, 'DataLegendColumn');
return DataLegendColumn;
}(Base));
export { DataLegendColumn };