UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 1.92 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 { ColorScaleDescription } from "./ColorScaleDescription"; import { markType } from "./type"; /** * @hidden */ export let CustomPaletteColorScaleDescription = /*@__PURE__*/ (() => { class CustomPaletteColorScaleDescription extends ColorScaleDescription { constructor() { super(); this.q = 0; this.p = 0; this.n = null; this.t = null; } get_type() { return "CustomPaletteColorScale"; } get minimumValue() { return this.q; } set minimumValue(a) { this.q = a; this.j("MinimumValue"); } get maximumValue() { return this.p; } set maximumValue(a) { this.p = a; this.j("MaximumValue"); } get palette() { return this.n; } set palette(a) { this.n = a; this.j("Palette"); } get interpolationMode() { return this.t; } set interpolationMode(a) { this.t = a; this.j("InterpolationMode"); } } CustomPaletteColorScaleDescription.$t = markType(CustomPaletteColorScaleDescription, 'CustomPaletteColorScaleDescription', ColorScaleDescription.$); return CustomPaletteColorScaleDescription; })();