UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

104 lines (103 loc) 3.4 kB
/* 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 { CategorySeriesDescription } from "./CategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let AnchoredCategorySeriesDescription = /*@__PURE__*/ (() => { class AnchoredCategorySeriesDescription extends CategorySeriesDescription { constructor() { super(); this.ee = null; this.ec = null; this.ed = null; this.eb = null; this.ea = null; this.d7 = null; this.d3 = 0; this.d5 = 0; this.d9 = null; this.d8 = null; } get_type() { return "AnchoredCategorySeries"; } get valueMemberPath() { return this.ee; } set valueMemberPath(a) { this.ee = a; this.e("ValueMemberPath"); } get valueMemberAsLegendLabel() { return this.ec; } set valueMemberAsLegendLabel(a) { this.ec = a; this.e("ValueMemberAsLegendLabel"); } get valueMemberAsLegendUnit() { return this.ed; } set valueMemberAsLegendUnit(a) { this.ed = a; this.e("ValueMemberAsLegendUnit"); } get trendLineType() { return this.eb; } set trendLineType(a) { this.eb = a; this.e("TrendLineType"); } get trendLineBrush() { return this.ea; } set trendLineBrush(a) { this.ea = a; this.e("TrendLineBrush"); } get actualTrendLineBrush() { return this.d7; } set actualTrendLineBrush(a) { this.d7 = a; this.e("ActualTrendLineBrush"); } get trendLineThickness() { return this.d3; } set trendLineThickness(a) { this.d3 = a; this.e("TrendLineThickness"); } get trendLinePeriod() { return this.d5; } set trendLinePeriod(a) { this.d5 = a; this.e("TrendLinePeriod"); } get markerCollisionAvoidance() { return this.d9; } set markerCollisionAvoidance(a) { this.d9 = a; this.e("MarkerCollisionAvoidance"); } get consolidatedItemHitTestBehavior() { return this.d8; } set consolidatedItemHitTestBehavior(a) { this.d8 = a; this.e("ConsolidatedItemHitTestBehavior"); } } AnchoredCategorySeriesDescription.$t = markType(AnchoredCategorySeriesDescription, 'AnchoredCategorySeriesDescription', CategorySeriesDescription.$); return AnchoredCategorySeriesDescription; })();