UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

120 lines (119 loc) 3.8 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 { RadialBaseDescription } from "./RadialBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let AnchoredRadialSeriesDescription = /*@__PURE__*/ (() => { class AnchoredRadialSeriesDescription extends RadialBaseDescription { constructor() { super(); this.he = false; this.hs = null; this.hn = null; this.hq = null; this.hr = null; this.hp = null; this.ho = null; this.hm = null; this.hg = 0; this.hc = null; this.hi = 0; this.hj = 0; } get_type() { return "AnchoredRadialSeries"; } get useCategoryNormalizedValues() { return this.he; } set useCategoryNormalizedValues(a) { this.he = a; this.j("UseCategoryNormalizedValues"); } get valueMemberPath() { return this.hs; } set valueMemberPath(a) { this.hs = a; this.j("ValueMemberPath"); } get highlightedValueMemberPath() { return this.hn; } set highlightedValueMemberPath(a) { this.hn = a; this.j("HighlightedValueMemberPath"); } get valueMemberAsLegendLabel() { return this.hq; } set valueMemberAsLegendLabel(a) { this.hq = a; this.j("ValueMemberAsLegendLabel"); } get valueMemberAsLegendUnit() { return this.hr; } set valueMemberAsLegendUnit(a) { this.hr = a; this.j("ValueMemberAsLegendUnit"); } get trendLineType() { return this.hp; } set trendLineType(a) { this.hp = a; this.j("TrendLineType"); } get trendLineBrush() { return this.ho; } set trendLineBrush(a) { this.ho = a; this.j("TrendLineBrush"); } get actualTrendLineBrush() { return this.hm; } set actualTrendLineBrush(a) { this.hm = a; this.j("ActualTrendLineBrush"); } get trendLineThickness() { return this.hg; } set trendLineThickness(a) { this.hg = a; this.j("TrendLineThickness"); } get trendLineDashArray() { return this.hc; } set trendLineDashArray(a) { this.hc = a; this.j("TrendLineDashArray"); } get trendLinePeriod() { return this.hi; } set trendLinePeriod(a) { this.hi = a; this.j("TrendLinePeriod"); } get trendLineZIndex() { return this.hj; } set trendLineZIndex(a) { this.hj = a; this.j("TrendLineZIndex"); } } AnchoredRadialSeriesDescription.$t = markType(AnchoredRadialSeriesDescription, 'AnchoredRadialSeriesDescription', RadialBaseDescription.$); return AnchoredRadialSeriesDescription; })();