UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

208 lines (207 loc) 6.15 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.eb = null; this.ef = null; this.ee = null; this.ei = null; this.ec = null; this.eg = null; this.ed = null; this.eh = null; this.ea = null; this.d9 = null; this.d4 = null; this.dt = 0; this.dx = 0; this.d8 = null; this.dy = 0; this.dw = 0; this.d7 = null; this.dv = 0; this.d3 = null; this.dq = false; this.dp = false; this.d6 = null; this.d5 = null; } get_type() { return "ScatterBase"; } get xAxisRef() { return this.eb; } set xAxisRef(a) { this.eb = a; this.e("XAxisRef"); } get yAxisRef() { return this.ef; } set yAxisRef(a) { this.ef = a; this.e("YAxisRef"); } get xMemberPath() { return this.ee; } set xMemberPath(a) { this.ee = a; this.e("XMemberPath"); } get yMemberPath() { return this.ei; } set yMemberPath(a) { this.ei = a; this.e("YMemberPath"); } get xMemberAsLegendLabel() { return this.ec; } set xMemberAsLegendLabel(a) { this.ec = a; this.e("XMemberAsLegendLabel"); } get yMemberAsLegendLabel() { return this.eg; } set yMemberAsLegendLabel(a) { this.eg = a; this.e("YMemberAsLegendLabel"); } get xMemberAsLegendUnit() { return this.ed; } set xMemberAsLegendUnit(a) { this.ed = a; this.e("XMemberAsLegendUnit"); } get yMemberAsLegendUnit() { return this.eh; } set yMemberAsLegendUnit(a) { this.eh = a; this.e("YMemberAsLegendUnit"); } get trendLineType() { return this.ea; } set trendLineType(a) { this.ea = a; this.e("TrendLineType"); } get trendLineBrush() { return this.d9; } set trendLineBrush(a) { this.d9 = a; this.e("TrendLineBrush"); } get actualTrendLineBrush() { return this.d4; } set actualTrendLineBrush(a) { this.d4 = a; this.e("ActualTrendLineBrush"); } get trendLineThickness() { return this.dt; } set trendLineThickness(a) { this.dt = a; this.e("TrendLineThickness"); } get trendLinePeriod() { return this.dx; } set trendLinePeriod(a) { this.dx = a; this.e("TrendLinePeriod"); } get markerCollisionAvoidance() { return this.d8; } set markerCollisionAvoidance(a) { this.d8 = a; this.e("MarkerCollisionAvoidance"); } get trendLineZIndex() { return this.dy; } set trendLineZIndex(a) { this.dy = a; this.e("TrendLineZIndex"); } get maximumMarkers() { return this.dw; } set maximumMarkers(a) { this.dw = a; this.e("MaximumMarkers"); } get itemSearchMode() { return this.d7; } set itemSearchMode(a) { this.d7 = a; this.e("ItemSearchMode"); } get itemSearchThreshold() { return this.dv; } set itemSearchThreshold(a) { this.dv = a; this.e("ItemSearchThreshold"); } get actualItemSearchMode() { return this.d3; } set actualItemSearchMode(a) { this.d3 = a; this.e("ActualItemSearchMode"); } get isCustomScatterStyleAllowed() { return this.dq; } set isCustomScatterStyleAllowed(a) { this.dq = a; this.e("IsCustomScatterStyleAllowed"); } get isCustomScatterMarkerStyleAllowed() { return this.dp; } set isCustomScatterMarkerStyleAllowed(a) { this.dp = a; this.e("IsCustomScatterMarkerStyleAllowed"); } get assigningScatterStyleRef() { return this.d6; } set assigningScatterStyleRef(a) { this.d6 = a; this.e("AssigningScatterStyleRef"); } get assigningScatterMarkerStyleRef() { return this.d5; } set assigningScatterMarkerStyleRef(a) { this.d5 = a; this.e("AssigningScatterMarkerStyleRef"); } } ScatterBaseDescription.$t = markType(ScatterBaseDescription, 'ScatterBaseDescription', MarkerSeriesDescription.$); return ScatterBaseDescription; })();