UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

232 lines (231 loc) 6.84 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 { MarkerSeriesDescription } from "./MarkerSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let ScatterBaseDescription = /*@__PURE__*/ (() => { class ScatterBaseDescription extends MarkerSeriesDescription { constructor() { super(); this.go = null; this.gs = null; this.gr = null; this.gv = null; this.gi = null; this.gj = null; this.gp = null; this.gt = null; this.gq = null; this.gu = null; this.gn = null; this.gm = null; this.gf = null; this.f4 = 0; this.fy = null; this.f8 = 0; this.gl = null; this.f9 = 0; this.f7 = 0; this.gk = null; this.f6 = 0; this.ge = null; this.f1 = false; this.f0 = false; this.gh = null; this.gg = null; } get_type() { return "ScatterBase"; } get xAxisRef() { return this.go; } set xAxisRef(a) { this.go = a; this.j("XAxisRef"); } get yAxisRef() { return this.gs; } set yAxisRef(a) { this.gs = a; this.j("YAxisRef"); } get xMemberPath() { return this.gr; } set xMemberPath(a) { this.gr = a; this.j("XMemberPath"); } get yMemberPath() { return this.gv; } set yMemberPath(a) { this.gv = a; this.j("YMemberPath"); } get highlightedXMemberPath() { return this.gi; } set highlightedXMemberPath(a) { this.gi = a; this.j("HighlightedXMemberPath"); } get highlightedYMemberPath() { return this.gj; } set highlightedYMemberPath(a) { this.gj = a; this.j("HighlightedYMemberPath"); } get xMemberAsLegendLabel() { return this.gp; } set xMemberAsLegendLabel(a) { this.gp = a; this.j("XMemberAsLegendLabel"); } get yMemberAsLegendLabel() { return this.gt; } set yMemberAsLegendLabel(a) { this.gt = a; this.j("YMemberAsLegendLabel"); } get xMemberAsLegendUnit() { return this.gq; } set xMemberAsLegendUnit(a) { this.gq = a; this.j("XMemberAsLegendUnit"); } get yMemberAsLegendUnit() { return this.gu; } set yMemberAsLegendUnit(a) { this.gu = a; this.j("YMemberAsLegendUnit"); } get trendLineType() { return this.gn; } set trendLineType(a) { this.gn = a; this.j("TrendLineType"); } get trendLineBrush() { return this.gm; } set trendLineBrush(a) { this.gm = a; this.j("TrendLineBrush"); } get actualTrendLineBrush() { return this.gf; } set actualTrendLineBrush(a) { this.gf = a; this.j("ActualTrendLineBrush"); } get trendLineThickness() { return this.f4; } set trendLineThickness(a) { this.f4 = a; this.j("TrendLineThickness"); } get trendLineDashArray() { return this.fy; } set trendLineDashArray(a) { this.fy = a; this.j("TrendLineDashArray"); } get trendLinePeriod() { return this.f8; } set trendLinePeriod(a) { this.f8 = a; this.j("TrendLinePeriod"); } get markerCollisionAvoidance() { return this.gl; } set markerCollisionAvoidance(a) { this.gl = a; this.j("MarkerCollisionAvoidance"); } get trendLineZIndex() { return this.f9; } set trendLineZIndex(a) { this.f9 = a; this.j("TrendLineZIndex"); } get maximumMarkers() { return this.f7; } set maximumMarkers(a) { this.f7 = a; this.j("MaximumMarkers"); } get itemSearchMode() { return this.gk; } set itemSearchMode(a) { this.gk = a; this.j("ItemSearchMode"); } get itemSearchThreshold() { return this.f6; } set itemSearchThreshold(a) { this.f6 = a; this.j("ItemSearchThreshold"); } get actualItemSearchMode() { return this.ge; } set actualItemSearchMode(a) { this.ge = a; this.j("ActualItemSearchMode"); } get isCustomScatterStyleAllowed() { return this.f1; } set isCustomScatterStyleAllowed(a) { this.f1 = a; this.j("IsCustomScatterStyleAllowed"); } get isCustomScatterMarkerStyleAllowed() { return this.f0; } set isCustomScatterMarkerStyleAllowed(a) { this.f0 = a; this.j("IsCustomScatterMarkerStyleAllowed"); } get assigningScatterStyleRef() { return this.gh; } set assigningScatterStyleRef(a) { this.gh = a; this.j("AssigningScatterStyleRef"); } get assigningScatterMarkerStyleRef() { return this.gg; } set assigningScatterMarkerStyleRef(a) { this.gg = a; this.j("AssigningScatterMarkerStyleRef"); } } ScatterBaseDescription.$t = markType(ScatterBaseDescription, 'ScatterBaseDescription', MarkerSeriesDescription.$); return ScatterBaseDescription; })();