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.gj = null; this.gn = null; this.gm = null; this.gq = null; this.gd = null; this.ge = null; this.gk = null; this.go = null; this.gl = null; this.gp = null; this.gi = null; this.gh = null; this.ga = null; this.fz = 0; this.ft = null; this.f3 = 0; this.gg = null; this.f4 = 0; this.f2 = 0; this.gf = null; this.f1 = 0; this.f9 = null; this.fw = false; this.fv = false; this.gc = null; this.gb = null; } get xAxisRef() { return this.gj; } set xAxisRef(a) { this.gj = a; this.g("XAxisRef"); } get yAxisRef() { return this.gn; } set yAxisRef(a) { this.gn = a; this.g("YAxisRef"); } get xMemberPath() { return this.gm; } set xMemberPath(a) { this.gm = a; this.g("XMemberPath"); } get yMemberPath() { return this.gq; } set yMemberPath(a) { this.gq = a; this.g("YMemberPath"); } get highlightedXMemberPath() { return this.gd; } set highlightedXMemberPath(a) { this.gd = a; this.g("HighlightedXMemberPath"); } get highlightedYMemberPath() { return this.ge; } set highlightedYMemberPath(a) { this.ge = a; this.g("HighlightedYMemberPath"); } get xMemberAsLegendLabel() { return this.gk; } set xMemberAsLegendLabel(a) { this.gk = a; this.g("XMemberAsLegendLabel"); } get yMemberAsLegendLabel() { return this.go; } set yMemberAsLegendLabel(a) { this.go = a; this.g("YMemberAsLegendLabel"); } get xMemberAsLegendUnit() { return this.gl; } set xMemberAsLegendUnit(a) { this.gl = a; this.g("XMemberAsLegendUnit"); } get yMemberAsLegendUnit() { return this.gp; } set yMemberAsLegendUnit(a) { this.gp = a; this.g("YMemberAsLegendUnit"); } get trendLineType() { return this.gi; } set trendLineType(a) { this.gi = a; this.g("TrendLineType"); } get trendLineBrush() { return this.gh; } set trendLineBrush(a) { this.gh = a; this.g("TrendLineBrush"); } get actualTrendLineBrush() { return this.ga; } set actualTrendLineBrush(a) { this.ga = a; this.g("ActualTrendLineBrush"); } get trendLineThickness() { return this.fz; } set trendLineThickness(a) { this.fz = a; this.g("TrendLineThickness"); } get trendLineDashArray() { return this.ft; } set trendLineDashArray(a) { this.ft = a; this.g("TrendLineDashArray"); } get trendLinePeriod() { return this.f3; } set trendLinePeriod(a) { this.f3 = a; this.g("TrendLinePeriod"); } get markerCollisionAvoidance() { return this.gg; } set markerCollisionAvoidance(a) { this.gg = a; this.g("MarkerCollisionAvoidance"); } get trendLineZIndex() { return this.f4; } set trendLineZIndex(a) { this.f4 = a; this.g("TrendLineZIndex"); } get maximumMarkers() { return this.f2; } set maximumMarkers(a) { this.f2 = a; this.g("MaximumMarkers"); } get itemSearchMode() { return this.gf; } set itemSearchMode(a) { this.gf = a; this.g("ItemSearchMode"); } get itemSearchThreshold() { return this.f1; } set itemSearchThreshold(a) { this.f1 = a; this.g("ItemSearchThreshold"); } get actualItemSearchMode() { return this.f9; } set actualItemSearchMode(a) { this.f9 = a; this.g("ActualItemSearchMode"); } get isCustomScatterStyleAllowed() { return this.fw; } set isCustomScatterStyleAllowed(a) { this.fw = a; this.g("IsCustomScatterStyleAllowed"); } get isCustomScatterMarkerStyleAllowed() { return this.fv; } set isCustomScatterMarkerStyleAllowed(a) { this.fv = a; this.g("IsCustomScatterMarkerStyleAllowed"); } get assigningScatterStyleRef() { return this.gc; } set assigningScatterStyleRef(a) { this.gc = a; this.g("AssigningScatterStyleRef"); } get assigningScatterMarkerStyleRef() { return this.gb; } set assigningScatterMarkerStyleRef(a) { this.gb = a; this.g("AssigningScatterMarkerStyleRef"); } } ScatterBaseDescription.$t = /*@__PURE__*/ markType(ScatterBaseDescription, 'ScatterBaseDescription', MarkerSeriesDescription.$); return ScatterBaseDescription; })();