UNPKG

igniteui-react-core

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