igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
54 lines (53 loc) • 2.23 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 "igniteui-angular-core";
import { IHasCategoryTrendline_$type } from "./IHasCategoryTrendline";
import { DefaultCategoryTrendlinePreparer } from "./DefaultCategoryTrendlinePreparer";
/**
* @hidden
*/
var DefaultCategoryTrendlineHost = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DefaultCategoryTrendlineHost, _super);
function DefaultCategoryTrendlineHost() {
var _this = _super.call(this) || this;
_this.a = null;
_this.a = new DefaultCategoryTrendlinePreparer();
return _this;
}
Object.defineProperty(DefaultCategoryTrendlineHost.prototype, "trendlinePreparer", {
get: function () {
return this.a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DefaultCategoryTrendlineHost.prototype, "trendLineType", {
get: function () {
return 0;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DefaultCategoryTrendlineHost.prototype, "trendLinePeriod", {
get: function () {
return 1;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DefaultCategoryTrendlineHost.prototype, "isVertical", {
get: function () {
return false;
},
enumerable: false,
configurable: true
});
DefaultCategoryTrendlineHost.$t = markType(DefaultCategoryTrendlineHost, 'DefaultCategoryTrendlineHost', Base.$, [IHasCategoryTrendline_$type]);
return DefaultCategoryTrendlineHost;
}(Base));
export { DefaultCategoryTrendlineHost };