UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

120 lines (119 loc) 3.87 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.gn = null; this.gh = null; this.gl = null; this.gm = null; this.gk = null; this.gj = null; this.gf = null; this.gb = 0; this.f9 = null; this.gd = 0; this.gi = null; this.gg = null; } get_type() { return "AnchoredCategorySeries"; } get valueMemberPath() { return this.gn; } set valueMemberPath(a) { this.gn = a; this.g("ValueMemberPath"); } get highlightedValueMemberPath() { return this.gh; } set highlightedValueMemberPath(a) { this.gh = a; this.g("HighlightedValueMemberPath"); } get valueMemberAsLegendLabel() { return this.gl; } set valueMemberAsLegendLabel(a) { this.gl = a; this.g("ValueMemberAsLegendLabel"); } get valueMemberAsLegendUnit() { return this.gm; } set valueMemberAsLegendUnit(a) { this.gm = a; this.g("ValueMemberAsLegendUnit"); } get trendLineType() { return this.gk; } set trendLineType(a) { this.gk = a; this.g("TrendLineType"); } get trendLineBrush() { return this.gj; } set trendLineBrush(a) { this.gj = a; this.g("TrendLineBrush"); } get actualTrendLineBrush() { return this.gf; } set actualTrendLineBrush(a) { this.gf = a; this.g("ActualTrendLineBrush"); } get trendLineThickness() { return this.gb; } set trendLineThickness(a) { this.gb = a; this.g("TrendLineThickness"); } get trendLineDashArray() { return this.f9; } set trendLineDashArray(a) { this.f9 = a; this.g("TrendLineDashArray"); } get trendLinePeriod() { return this.gd; } set trendLinePeriod(a) { this.gd = a; this.g("TrendLinePeriod"); } get markerCollisionAvoidance() { return this.gi; } set markerCollisionAvoidance(a) { this.gi = a; this.g("MarkerCollisionAvoidance"); } get consolidatedItemHitTestBehavior() { return this.gg; } set consolidatedItemHitTestBehavior(a) { this.gg = a; this.g("ConsolidatedItemHitTestBehavior"); } } AnchoredCategorySeriesDescription.$t = markType(AnchoredCategorySeriesDescription, 'AnchoredCategorySeriesDescription', CategorySeriesDescription.$); return AnchoredCategorySeriesDescription; })();