igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
38 lines (37 loc) • 1.76 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 { ContourValueResolver } from "./ContourValueResolver";
import { markType } from "igniteui-angular-core";
import { CustomContourValueResolverEventArgs } from "./CustomContourValueResolverEventArgs";
/**
* @hidden
*/
var CustomContourValueResolver = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CustomContourValueResolver, _super);
function CustomContourValueResolver() {
var _this = _super.call(this) || this;
_this.getCustomContourValues = null;
return _this;
}
CustomContourValueResolver.prototype.j = function (a) {
var b = new CustomContourValueResolverEventArgs(a);
this.n(b);
if (b.contourValuesEnumerable != null) {
return b.contourValuesEnumerable;
}
return [];
};
CustomContourValueResolver.prototype.n = function (a) {
if (this.getCustomContourValues != null) {
this.getCustomContourValues(this, a);
}
};
CustomContourValueResolver.$t = markType(CustomContourValueResolver, 'CustomContourValueResolver', ContourValueResolver.$);
return CustomContourValueResolver;
}(ContourValueResolver));
export { CustomContourValueResolver };