igniteui-react-core
Version:
Ignite UI React Core.
77 lines (76 loc) • 2.38 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, markType } from "./type";
import { stringIsNullOrEmpty } from "./string";
/**
* @hidden
*/
var DataLegendSeriesValueInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataLegendSeriesValueInfo, _super);
function DataLegendSeriesValueInfo() {
var _this = _super.call(this) || this;
_this.l = 0;
_this.v = null;
_this.w = null;
_this.x = null;
_this.y = null;
_this.z = null;
_this.n = 0;
_this.m = 0;
_this.j = false;
_this.i = false;
_this.e = false;
_this.h = false;
_this.f = false;
_this.g = false;
_this.d = false;
_this.a = 0;
_this.o = 0;
_this.p = 0;
_this.k = false;
_this.c = false;
_this.b = false;
_this.r = null;
_this.q = null;
_this.s = null;
_this.t = null;
_this.b = true;
_this.c = true;
_this.k = false;
_this.v = "";
_this.w = "";
_this.x = "";
_this.y = "";
_this.s = "";
_this.n = -1;
_this.m = -1;
_this.j = false;
_this.i = false;
_this.e = true;
_this.h = true;
_this.f = true;
_this.g = true;
_this.d = true;
_this.z = null;
return _this;
}
DataLegendSeriesValueInfo.prototype.u = function () {
var a = "";
if (!stringIsNullOrEmpty(this.r)) {
a += this.r + ": ";
}
else if (!stringIsNullOrEmpty(this.q)) {
a += this.q + ": ";
}
a += this.l;
return a;
};
DataLegendSeriesValueInfo.$t = markType(DataLegendSeriesValueInfo, 'DataLegendSeriesValueInfo');
return DataLegendSeriesValueInfo;
}(Base));
export { DataLegendSeriesValueInfo };