UNPKG

igniteui-react-core

Version:
120 lines (119 loc) 3.69 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 { get_type() { return "AnchoredRadialSeries"; } constructor() { super(); this.hk = false; this.hy = null; this.ht = null; this.hw = null; this.hx = null; this.hv = null; this.hu = null; this.hs = null; this.hm = 0; this.hi = null; this.ho = 0; this.hp = 0; } get useCategoryNormalizedValues() { return this.hk; } set useCategoryNormalizedValues(a) { this.hk = a; this.j("UseCategoryNormalizedValues"); } get valueMemberPath() { return this.hy; } set valueMemberPath(a) { this.hy = a; this.j("ValueMemberPath"); } get highlightedValueMemberPath() { return this.ht; } set highlightedValueMemberPath(a) { this.ht = a; this.j("HighlightedValueMemberPath"); } get valueMemberAsLegendLabel() { return this.hw; } set valueMemberAsLegendLabel(a) { this.hw = a; this.j("ValueMemberAsLegendLabel"); } get valueMemberAsLegendUnit() { return this.hx; } set valueMemberAsLegendUnit(a) { this.hx = a; this.j("ValueMemberAsLegendUnit"); } get trendLineType() { return this.hv; } set trendLineType(a) { this.hv = a; this.j("TrendLineType"); } get trendLineBrush() { return this.hu; } set trendLineBrush(a) { this.hu = a; this.j("TrendLineBrush"); } get actualTrendLineBrush() { return this.hs; } set actualTrendLineBrush(a) { this.hs = a; this.j("ActualTrendLineBrush"); } get trendLineThickness() { return this.hm; } set trendLineThickness(a) { this.hm = a; this.j("TrendLineThickness"); } get trendLineDashArray() { return this.hi; } set trendLineDashArray(a) { this.hi = a; this.j("TrendLineDashArray"); } get trendLinePeriod() { return this.ho; } set trendLinePeriod(a) { this.ho = a; this.j("TrendLinePeriod"); } get trendLineZIndex() { return this.hp; } set trendLineZIndex(a) { this.hp = a; this.j("TrendLineZIndex"); } } AnchoredRadialSeriesDescription.$t = /*@__PURE__*/ markType(AnchoredRadialSeriesDescription, 'AnchoredRadialSeriesDescription', RadialBaseDescription.$); return AnchoredRadialSeriesDescription; })();