igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
936 lines (910 loc) • 11.8 MB
JavaScript
/*!
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.
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('tslib'), require('igniteui-react-core'), require('react'), require('react-dom')) :
typeof define === 'function' && define.amd ? define(['exports', 'tslib', 'igniteui-react-core', 'react', 'react-dom'], factory) :
(global = global || self, factory(global['igniteui-react-charts'] = {}, global.tslib, global.igniteuiReactCore, global.React, global.ReactDOM));
}(this, (function (exports, tslib, igniteuiReactCore, React, ReactDOM) { 'use strict';
/*
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.
*/
/**
* Describes available types of speeds used when transitioning in a series.
*/
var TransitionInSpeedType = /*@__PURE__*/ (function (TransitionInSpeedType) {
/**
* A speed type is automatically selected.
*/
TransitionInSpeedType[TransitionInSpeedType["Auto"] = 0] = "Auto";
/**
* All speeds are normal, data points will arrive at the same time.
*/
TransitionInSpeedType[TransitionInSpeedType["Normal"] = 1] = "Normal";
/**
* Data points will arrive later if their value is further from the start point.
*/
TransitionInSpeedType[TransitionInSpeedType["ValueScaled"] = 2] = "ValueScaled";
/**
* Data points will arrive later if their index is further from the axis origin.
*/
TransitionInSpeedType[TransitionInSpeedType["IndexScaled"] = 3] = "IndexScaled";
/**
* Data points will arrive at random times.
*/
TransitionInSpeedType[TransitionInSpeedType["Random"] = 4] = "Random";
return TransitionInSpeedType;
})({});
/**
* @hidden
*/
var TransitionInSpeedType_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('TransitionInSpeedType', 'Auto,0|Normal,1|ValueScaled,2|IndexScaled,3|Random,4');
/*
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.
*/
/**
* Describes available behaviors for performing hit testing in the chart/map.
*/
var SeriesHitTestMode = /*@__PURE__*/ (function (SeriesHitTestMode) {
/**
* Automatically decide the appropriate hit test mode for the series.
*/
SeriesHitTestMode[SeriesHitTestMode["Auto"] = 0] = "Auto";
/**
* Use a computational based approach to determine whether the series has been hit. This uses loose bounding boxes, in some cases, and can range in time complexity between O(1) and O(log n) to find a hit. This decreases frame render time compared to color encoded.
*/
SeriesHitTestMode[SeriesHitTestMode["Computational"] = 1] = "Computational";
/**
* Use a color encoded off screen buffer for hit testing. Should always be O(1) time for determining a hit series. This increases frame render time and memory usage, however. Consider using this if hit testing time is degrading performance.
*/
SeriesHitTestMode[SeriesHitTestMode["ColorEncoded"] = 2] = "ColorEncoded";
return SeriesHitTestMode;
})({});
/**
* @hidden
*/
var SeriesHitTestMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesHitTestMode', 'Auto,0|Computational,1|ColorEncoded,2');
/*
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.
*/
/**
* @hidden
*/
var RenderRequestedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
tslib.__extends(RenderRequestedEventArgs, _super);
function RenderRequestedEventArgs() {
var _this = _super.apply(this, tslib.__spreadArray([], tslib.__read(arguments), false)) || this;
_this._animate = false;
return _this;
}
Object.defineProperty(RenderRequestedEventArgs.prototype, "animate", {
get: function () {
return this._animate;
},
set: function (a) {
this._animate = a;
},
enumerable: false,
configurable: true
});
RenderRequestedEventArgs.$t = igniteuiReactCore.markType(RenderRequestedEventArgs, 'RenderRequestedEventArgs', igniteuiReactCore.EventArgs.$);
return RenderRequestedEventArgs;
}(igniteuiReactCore.EventArgs));
/**
* EventArgs class for RenderRequested events.
*
* Use the `RenderRequested` class for RenderRequested events.
*
* ```ts
* <IgrDataChart
* dataSource={this.data}
* ref={this.onChartRef}
* width="100%"
* height="100%" >
* <IgrCategoryXAxis name="xAxis" label="Country" />
* <IgrNumericYAxis name="yAxis" minimumValue={0} />
* <IgrColumnSeries name="series1"
* xAxisName="xAxis"
* yAxisName="yAxis"
* valueMemberPath="Coal"
* renderRequested= {this.OnRenderRequested}/>
* </IgrDataChart>
* ```
*
* ```ts
* let series1 = new IgrColumnSeries({ name: "series1" });
* series1.valueMemberPath = "USA";
* series1.title = "USA";
* series1.xAxisName = "xAxis";
* series1.yAxisName = "yAxis";
* series1.renderRequested = this.OnRenderRequested;
*
* public OnRenderRequested =( s:IgrSeries, e:RenderRequestedEventArgs) => {
*
* }
* ```
*/
var IgrRenderRequestedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrRenderRequestedEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrRenderRequestedEventArgs.prototype.createImplementation = function () {
return new RenderRequestedEventArgs();
};
Object.defineProperty(IgrRenderRequestedEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrRenderRequestedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrRenderRequestedEventArgs.prototype.onImplementationCreated = function () {
};
IgrRenderRequestedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrRenderRequestedEventArgs.prototype, "animate", {
/**
* True if animation is requested.
*
* Use the `Animate` property true if the animation is requested.
*
* ```ts
* e.animation = true;
* ```
*/
get: function () {
return this.i.animate;
},
set: function (v) {
this.i.animate = igniteuiReactCore.ensureBool(v);
},
enumerable: false,
configurable: true
});
return IgrRenderRequestedEventArgs;
}());
/*
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.
*/
/**
* Describes available locations of the axis labels in the chart.
*/
var SeriesVisibleRangeMode = /*@__PURE__*/ (function (SeriesVisibleRangeMode) {
/**
* Visible range mode is managed by the component.
*/
SeriesVisibleRangeMode[SeriesVisibleRangeMode["Auto"] = 0] = "Auto";
/**
* Only the series values are considered for evaluating the visible range.
*/
SeriesVisibleRangeMode[SeriesVisibleRangeMode["ValuesOnly"] = 1] = "ValuesOnly";
/**
* The reference value is included in the series visible range.
*/
SeriesVisibleRangeMode[SeriesVisibleRangeMode["IncludeReferenceValue"] = 2] = "IncludeReferenceValue";
return SeriesVisibleRangeMode;
})({});
/**
* @hidden
*/
var SeriesVisibleRangeMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesVisibleRangeMode', 'Auto,0|ValuesOnly,1|IncludeReferenceValue,2');
/*
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.
*/
/**
* Describes the highlighting mode to use for the series in the chart.
*/
var SeriesHighlightingMode = /*@__PURE__*/ (function (SeriesHighlightingMode) {
/**
* Highlighting mode is determined by the component.
*/
SeriesHighlightingMode[SeriesHighlightingMode["Auto"] = 0] = "Auto";
/**
* No highlighting is defined at the chart level. Individual series may have local highlight settings.
*/
SeriesHighlightingMode[SeriesHighlightingMode["None"] = 1] = "None";
/**
* Series will brighten when hovered, and, if applicable brighten indiviudal shapes or markers.
*/
SeriesHighlightingMode[SeriesHighlightingMode["BrightenSpecific"] = 2] = "BrightenSpecific";
/**
* Series will brighten when hovered.
*/
SeriesHighlightingMode[SeriesHighlightingMode["Brighten"] = 3] = "Brighten";
/**
* Series will fade if they aren't the hovered series, and, if applicable other shapes in the hovered series will fade.
*/
SeriesHighlightingMode[SeriesHighlightingMode["FadeOthersSpecific"] = 4] = "FadeOthersSpecific";
/**
* Series will fade if they aren't the hovered series, and, if applicable other shapes in the hovered series will fade.
*/
SeriesHighlightingMode[SeriesHighlightingMode["FadeOthers"] = 5] = "FadeOthers";
return SeriesHighlightingMode;
})({});
/**
* @hidden
*/
var SeriesHighlightingMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesHighlightingMode', 'Auto,0|None,1|BrightenSpecific,2|Brighten,3|FadeOthersSpecific,4|FadeOthers,5');
/*
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.
*/
/**
* Describes available locations of the axis labels in the chart.
*/
var SeriesOutlineMode = /*@__PURE__*/ (function (SeriesOutlineMode) {
/**
* Outline mode is managed by the series.
*/
SeriesOutlineMode[SeriesOutlineMode["Auto"] = 0] = "Auto";
/**
* This series should show the outline portion of the visual.
*/
SeriesOutlineMode[SeriesOutlineMode["Visible"] = 1] = "Visible";
/**
* The series should hide the outline portion of the visual.
*/
SeriesOutlineMode[SeriesOutlineMode["Collapsed"] = 2] = "Collapsed";
return SeriesOutlineMode;
})({});
/**
* @hidden
*/
var SeriesOutlineMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesOutlineMode', 'Auto,0|Visible,1|Collapsed,2');
/*
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.
*/
/**
* Describes available behaviors for the ValueOverlay.
*/
var ValueLayerValueMode = /*@__PURE__*/ (function (ValueLayerValueMode) {
/**
* The layer will automatically choose a mode to use.
*/
ValueLayerValueMode[ValueLayerValueMode["Auto"] = 0] = "Auto";
/**
* The layer will position itself at the minimum value found on the target series or across all series if no target is specified.
*/
ValueLayerValueMode[ValueLayerValueMode["Minimum"] = 1] = "Minimum";
/**
* The layer will position itself at the maximum value found on the target series or across all series if no target is specified.
*/
ValueLayerValueMode[ValueLayerValueMode["Maximum"] = 2] = "Maximum";
/**
* The layer will position itself at the average value found on the target series or at multiple values for multiple series if no target series is specified.
*/
ValueLayerValueMode[ValueLayerValueMode["Average"] = 3] = "Average";
/**
* The layer will position itself at the global minimum value found.
*/
ValueLayerValueMode[ValueLayerValueMode["GlobalMinimum"] = 4] = "GlobalMinimum";
/**
* The layer will position itself at the global maximum value found.
*/
ValueLayerValueMode[ValueLayerValueMode["GlobalMaximum"] = 5] = "GlobalMaximum";
/**
* The layer will position itself at the global average value found.
*/
ValueLayerValueMode[ValueLayerValueMode["GlobalAverage"] = 6] = "GlobalAverage";
return ValueLayerValueMode;
})({});
/**
* @hidden
*/
var ValueLayerValueMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('ValueLayerValueMode', 'Auto,0|Minimum,1|Maximum,2|Average,3|GlobalMinimum,4|GlobalMaximum,5|GlobalAverage,6');
/*
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.
*/
/**
* Describes available locations of the axis labels in the chart.
*/
var SeriesPlotAreaMarginHorizontalMode = /*@__PURE__*/ (function (SeriesPlotAreaMarginHorizontalMode) {
/**
* Series horizontal plot area margin mode is determined by the component.
*/
SeriesPlotAreaMarginHorizontalMode[SeriesPlotAreaMarginHorizontalMode["Auto"] = 0] = "Auto";
/**
* The left of the horizontal axis will have a plot area margin, if applicable, and the right of the horizontal axis will have a plot area margin, if applicable.
*/
SeriesPlotAreaMarginHorizontalMode[SeriesPlotAreaMarginHorizontalMode["LeftMarginRightMargin"] = 1] = "LeftMarginRightMargin";
/**
* The left of the horizontal axis will have a range buffer, if applicable, and the right of the horizontal axis will have a range buffer, if applicable.
*/
SeriesPlotAreaMarginHorizontalMode[SeriesPlotAreaMarginHorizontalMode["LeftBufferRightBuffer"] = 2] = "LeftBufferRightBuffer";
/**
* The left of the horizontal axis will have a plot area margin, if applicable, and the right of the horizontal axis will have a range buffer, if applicable.
*/
SeriesPlotAreaMarginHorizontalMode[SeriesPlotAreaMarginHorizontalMode["LeftMarginRightBuffer"] = 3] = "LeftMarginRightBuffer";
/**
* The left of the horizontal axis will have a range buffer, if applicable, and the right of the horizontal axis will have a plot area margin, if applicable.
*/
SeriesPlotAreaMarginHorizontalMode[SeriesPlotAreaMarginHorizontalMode["LeftBufferRightMargin"] = 4] = "LeftBufferRightMargin";
/**
* No horizontal contributions to plot area margins will be made.
*/
SeriesPlotAreaMarginHorizontalMode[SeriesPlotAreaMarginHorizontalMode["None"] = 5] = "None";
return SeriesPlotAreaMarginHorizontalMode;
})({});
/**
* @hidden
*/
var SeriesPlotAreaMarginHorizontalMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesPlotAreaMarginHorizontalMode', 'Auto,0|LeftMarginRightMargin,1|LeftBufferRightBuffer,2|LeftMarginRightBuffer,3|LeftBufferRightMargin,4|None,5');
/*
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.
*/
/**
* Describes available locations of the axis labels in the chart.
*/
var SeriesPlotAreaMarginVerticalMode = /*@__PURE__*/ (function (SeriesPlotAreaMarginVerticalMode) {
/**
* Series horizontal plot area margin mode is determined by the component.
*/
SeriesPlotAreaMarginVerticalMode[SeriesPlotAreaMarginVerticalMode["Auto"] = 0] = "Auto";
/**
* The bottom of the horizontal axis will have a plot area margin, if applicable, and the top of the horizontal axis will have a plot area margin, if applicable.
*/
SeriesPlotAreaMarginVerticalMode[SeriesPlotAreaMarginVerticalMode["BottomMarginTopMargin"] = 1] = "BottomMarginTopMargin";
/**
* The bottom of the horizontal axis will have a range buffer, if applicable, and the top of the horizontal axis will have a range buffer, if applicable.
*/
SeriesPlotAreaMarginVerticalMode[SeriesPlotAreaMarginVerticalMode["BottomBufferTopBuffer"] = 2] = "BottomBufferTopBuffer";
/**
* The bottom of the horizontal axis will have a plot area margin, if applicable, and the top of the horizontal axis will have a range buffer, if applicable.
*/
SeriesPlotAreaMarginVerticalMode[SeriesPlotAreaMarginVerticalMode["BottomMarginTopBuffer"] = 3] = "BottomMarginTopBuffer";
/**
* The bottom of the horizontal axis will have a range buffer, if applicable, and the top of the horizontal axis will have a plot area margin, if applicable.
*/
SeriesPlotAreaMarginVerticalMode[SeriesPlotAreaMarginVerticalMode["BottomBufferTopMargin"] = 4] = "BottomBufferTopMargin";
/**
* No horizontal contributions to plot area margins will be made.
*/
SeriesPlotAreaMarginVerticalMode[SeriesPlotAreaMarginVerticalMode["None"] = 5] = "None";
return SeriesPlotAreaMarginVerticalMode;
})({});
/**
* @hidden
*/
var SeriesPlotAreaMarginVerticalMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesPlotAreaMarginVerticalMode', 'Auto,0|BottomMarginTopMargin,1|BottomBufferTopBuffer,2|BottomMarginTopBuffer,3|BottomBufferTopMargin,4|None,5');
/*
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.
*/
/**
* Describes the scrollbar mode to use for the series viewer.
*/
var SeriesViewerScrollbarMode = /*@__PURE__*/ (function (SeriesViewerScrollbarMode) {
/**
* No horizontal scrollbar will be visible.
*/
SeriesViewerScrollbarMode[SeriesViewerScrollbarMode["None"] = 0] = "None";
/**
* Fading scrollbar will be used that shows only when zoom/pan is changing or the cursor is near.
*/
SeriesViewerScrollbarMode[SeriesViewerScrollbarMode["Fading"] = 1] = "Fading";
/**
* A scrollbar that faides to a hairline will be used that shows only when zoom/pan is changing or the cursor is near.
*/
SeriesViewerScrollbarMode[SeriesViewerScrollbarMode["FadeToLine"] = 2] = "FadeToLine";
/**
* Persistent scrollbar will be used that shows all the time.
*/
SeriesViewerScrollbarMode[SeriesViewerScrollbarMode["Persistent"] = 3] = "Persistent";
return SeriesViewerScrollbarMode;
})({});
/**
* @hidden
*/
var SeriesViewerScrollbarMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesViewerScrollbarMode', 'None,0|Fading,1|FadeToLine,2|Persistent,3');
/*
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.
*/
/**
* Describes mode for selecting marker type when the series marker type is set to automatic.
*/
var MarkerAutomaticBehavior = /*@__PURE__*/ (function (MarkerAutomaticBehavior) {
/**
* Sets a circle marker on most series and no marker on bar, column, waterfall, polygon, and step series.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["CircleSmart"] = 0] = "CircleSmart";
/**
* Sets no visible marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["None"] = 1] = "None";
/**
* Sets an marker on most series based on its index and no marker on bar, column, waterfall, polygon, and step series.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["SmartIndexed"] = 2] = "SmartIndexed";
/**
* Sets marker for each series in the chart based on its index: circle, triangle, pyramid, etc.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Indexed"] = 3] = "Indexed";
/**
* Sets circle marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Circle"] = 4] = "Circle";
/**
* Sets flat-top triangle marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Triangle"] = 5] = "Triangle";
/**
* Sets flat-base triangle marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Pyramid"] = 6] = "Pyramid";
/**
* Sets square marker shape on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Square"] = 7] = "Square";
/**
* Sets diamond marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Diamond"] = 8] = "Diamond";
/**
* Sets pentagon marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Pentagon"] = 9] = "Pentagon";
/**
* Sets Hexagon marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Hexagon"] = 10] = "Hexagon";
/**
* Sets four-pointed star marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Tetragram"] = 11] = "Tetragram";
/**
* Sets five-pointed star marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Pentagram"] = 12] = "Pentagram";
/**
* Sets six-pointed star marker on all series in the chart.
*/
MarkerAutomaticBehavior[MarkerAutomaticBehavior["Hexagram"] = 13] = "Hexagram";
return MarkerAutomaticBehavior;
})({});
/**
* @hidden
*/
var MarkerAutomaticBehavior_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('MarkerAutomaticBehavior', 'CircleSmart,0|None,1|SmartIndexed,2|Indexed,3|Circle,4|Triangle,5|Pyramid,6|Square,7|Diamond,8|Pentagon,9|Hexagon,10|Tetragram,11|Pentagram,12|Hexagram,13');
/*
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.
*/
/**
* Describes the Selection mode to use for the series in the chart.
*/
var SeriesSelectionMode = /*@__PURE__*/ (function (SeriesSelectionMode) {
/**
* Selection mode is determined by the component.
*/
SeriesSelectionMode[SeriesSelectionMode["Auto"] = 0] = "Auto";
/**
* No Selection is defined at the chart level.
*/
SeriesSelectionMode[SeriesSelectionMode["None"] = 1] = "None";
/**
* Items will brighten when selected.
*/
SeriesSelectionMode[SeriesSelectionMode["Brighten"] = 2] = "Brighten";
/**
* Items other than the selected items will fade.
*/
SeriesSelectionMode[SeriesSelectionMode["FadeOthers"] = 3] = "FadeOthers";
/**
* Items other than the selected items will shift to grayscale.
*/
SeriesSelectionMode[SeriesSelectionMode["GrayscaleOthers"] = 4] = "GrayscaleOthers";
/**
* Items selected will have the focus color as their thick outline.
*/
SeriesSelectionMode[SeriesSelectionMode["FocusColorThickOutline"] = 5] = "FocusColorThickOutline";
/**
* Items selected will have the focus color as their outline.
*/
SeriesSelectionMode[SeriesSelectionMode["FocusColorOutline"] = 6] = "FocusColorOutline";
/**
* Items selected will have the selection color as their thick outline.
*/
SeriesSelectionMode[SeriesSelectionMode["SelectionColorThickOutline"] = 7] = "SelectionColorThickOutline";
/**
* Items selected will have the selection color as their outline.
*/
SeriesSelectionMode[SeriesSelectionMode["SelectionColorOutline"] = 8] = "SelectionColorOutline";
/**
* Items selected will have the focus color as their fill.
*/
SeriesSelectionMode[SeriesSelectionMode["FocusColorFill"] = 9] = "FocusColorFill";
/**
* Items selected will have the selection color as their fill.
*/
SeriesSelectionMode[SeriesSelectionMode["SelectionColorFill"] = 10] = "SelectionColorFill";
/**
* Items selected will have a thicker outline than the rest.
*/
SeriesSelectionMode[SeriesSelectionMode["ThickOutline"] = 11] = "ThickOutline";
return SeriesSelectionMode;
})({});
/**
* @hidden
*/
var SeriesSelectionMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesSelectionMode', 'Auto,0|None,1|Brighten,2|FadeOthers,3|GrayscaleOthers,4|FocusColorThickOutline,5|FocusColorOutline,6|SelectionColorThickOutline,7|SelectionColorOutline,8|FocusColorFill,9|SelectionColorFill,10|ThickOutline,11');
/*
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.
*/
/**
* Describes the Selection mode to use for the series in the chart.
*/
var SeriesSelectionBehavior = /*@__PURE__*/ (function (SeriesSelectionBehavior) {
/**
* Selection behavior is determined by the component.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["Auto"] = 0] = "Auto";
/**
* Selection is per data item, multiple data items can be selected.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["PerDataItemMultiSelect"] = 1] = "PerDataItemMultiSelect";
/**
* Selection is per data item, only one data item can be selected at once.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["PerDataItemSingleSelect"] = 2] = "PerDataItemSingleSelect";
/**
* Selection is per series and data item, multiple data items can be selected per series at once.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["PerSeriesAndDataItemMultiSelect"] = 3] = "PerSeriesAndDataItemMultiSelect";
/**
* Selection is per series and data item, only one data item may be selected per series at once.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["PerSeriesAndDataItemSingleSelect"] = 4] = "PerSeriesAndDataItemSingleSelect";
/**
* Selection is per series and data item, only one item may be selected globally at once.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["PerSeriesAndDataItemGlobalSingleSelect"] = 5] = "PerSeriesAndDataItemGlobalSingleSelect";
/**
* Selection is per series, multiple entire series may be selected at once.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["PerSeriesMultiSelect"] = 6] = "PerSeriesMultiSelect";
/**
* Selection is per series, only one series may be selected at once.
*/
SeriesSelectionBehavior[SeriesSelectionBehavior["PerSeriesSingleSelect"] = 7] = "PerSeriesSingleSelect";
return SeriesSelectionBehavior;
})({});
/**
* @hidden
*/
var SeriesSelectionBehavior_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesSelectionBehavior', 'Auto,0|PerDataItemMultiSelect,1|PerDataItemSingleSelect,2|PerSeriesAndDataItemMultiSelect,3|PerSeriesAndDataItemSingleSelect,4|PerSeriesAndDataItemGlobalSingleSelect,5|PerSeriesMultiSelect,6|PerSeriesSingleSelect,7');
/*
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.
*/
/**
* Describes the scrollbar mode to use for the series viewer.
*/
var SeriesViewerHorizontalScrollbarPosition = /*@__PURE__*/ (function (SeriesViewerHorizontalScrollbarPosition) {
/**
* Horizontal scrollbar position will be decided by the series viewer.
*/
SeriesViewerHorizontalScrollbarPosition[SeriesViewerHorizontalScrollbarPosition["Auto"] = 0] = "Auto";
/**
* Horizontal scrollbar will be used in the plot area inside bottom position.
*/
SeriesViewerHorizontalScrollbarPosition[SeriesViewerHorizontalScrollbarPosition["InsideBottom"] = 1] = "InsideBottom";
/**
* Vertical scrollbar will be used in the plot area inside top position.
*/
SeriesViewerHorizontalScrollbarPosition[SeriesViewerHorizontalScrollbarPosition["InsideTop"] = 2] = "InsideTop";
return SeriesViewerHorizontalScrollbarPosition;
})({});
/**
* @hidden
*/
var SeriesViewerHorizontalScrollbarPosition_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesViewerHorizontalScrollbarPosition', 'Auto,0|InsideBottom,1|InsideTop,2');
/*
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.
*/
/**
* Describes the scrollbar mode to use for the series viewer.
*/
var SeriesViewerVerticalScrollbarPosition = /*@__PURE__*/ (function (SeriesViewerVerticalScrollbarPosition) {
/**
* Vertical scrollbar position will be decided by the series viewer.
*/
SeriesViewerVerticalScrollbarPosition[SeriesViewerVerticalScrollbarPosition["Auto"] = 0] = "Auto";
/**
* Vertical scrollbar will be used in the plot area inside left position.
*/
SeriesViewerVerticalScrollbarPosition[SeriesViewerVerticalScrollbarPosition["InsideLeft"] = 1] = "InsideLeft";
/**
* Vertical scrollbar will be used in the plot area inside right position.
*/
SeriesViewerVerticalScrollbarPosition[SeriesViewerVerticalScrollbarPosition["InsideRight"] = 2] = "InsideRight";
return SeriesViewerVerticalScrollbarPosition;
})({});
/**
* @hidden
*/
var SeriesViewerVerticalScrollbarPosition_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesViewerVerticalScrollbarPosition', 'Auto,0|InsideLeft,1|InsideRight,2');
/*
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.
*/
/**
* Describes the highlighting mode to use for the series in the chart.
*/
var SeriesHighlightingBehavior = /*@__PURE__*/ (function (SeriesHighlightingBehavior) {
/**
* Highlighting behavior is determined by the component.
*/
SeriesHighlightingBehavior[SeriesHighlightingBehavior["Auto"] = 0] = "Auto";
/**
* Series are highlighted when the cursor is directly above them.
*/
SeriesHighlightingBehavior[SeriesHighlightingBehavior["DirectlyOver"] = 1] = "DirectlyOver";
/**
* The nearest items to the cursor will be highlighted.
*/
SeriesHighlightingBehavior[SeriesHighlightingBehavior["NearestItems"] = 2] = "NearestItems";
/**
* The nearest items to the cursor will be highlighted, the main shapes of the series will not be de-emphasized.
*/
SeriesHighlightingBehavior[SeriesHighlightingBehavior["NearestItemsRetainMainShapes"] = 3] = "NearestItemsRetainMainShapes";
/**
* The nearest items to the cursor will be highlighted, the main shapes of the series closest to the cursor will not be de-emphasized.
*/
SeriesHighlightingBehavior[SeriesHighlightingBehavior["NearestItemsAndSeries"] = 4] = "NearestItemsAndSeries";
return SeriesHighlightingBehavior;
})({});
/**
* @hidden
*/
var SeriesHighlightingBehavior_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('SeriesHighlightingBehavior', 'Auto,0|DirectlyOver,1|NearestItems,2|NearestItemsRetainMainShapes,3|NearestItemsAndSeries,4');
/*
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.
*/
/**
* Describes the highlighting mode to use for the series in the chart.
*/
var LegendHighlightingMode = /*@__PURE__*/ (function (LegendHighlightingMode) {
/**
* Highlighting mode is determined by the component.
*/
LegendHighlightingMode[LegendHighlightingMode["Auto"] = 0] = "Auto";
/**
* Legend will not attempt to highlight series when rolling over legend items.
*/
LegendHighlightingMode[LegendHighlightingMode["None"] = 1] = "None";
/**
* On rollover of legend, series will highlight matching the highlight configuration of the series.
*/
LegendHighlightingMode[LegendHighlightingMode["MatchSeries"] = 2] = "MatchSeries";
return LegendHighlightingMode;
})({});
/**
* @hidden
*/
var LegendHighlightingMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('LegendHighlightingMode', 'Auto,0|None,1|MatchSeries,2');
/*
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.
*/
/**
* Describes available behaviors for performing hit testing in the chart/map.
*/
var ChartHitTestMode = /*@__PURE__*/ (function (ChartHitTestMode) {
/**
* Automatically decide the appropriate hit test mode for the content.
*/
ChartHitTestMode[ChartHitTestMode["Auto"] = 0] = "Auto";
/**
* Use a computational based approach to determine which series has been hit. This uses loose bounding boxes, in some cases, and can range in time complexity between O(1) and O(log n) to find a hit. This decreases frame render time compared to color encoded.
*/
ChartHitTestMode[ChartHitTestMode["Computational"] = 1] = "Computational";
/**
* Use a color encoded off screen buffer for hit testing. This can have extremely rare false positives where the wrong series is hit (this is due to our inability to disable anti-aliasing in our color buffer), but should always be O(1) time for determining a hit series. This increases frame render time, however. Consider using this if hit testing time is degrading performance.
*/
ChartHitTestMode[ChartHitTestMode["ColorEncoded"] = 2] = "ColorEncoded";
/**
* Let each series decide which hit testing mode to use individually based on their own hit test mode.
*/
ChartHitTestMode[ChartHitTestMode["Mixed"] = 3] = "Mixed";
/**
* Let each series decide which hit testing mode to use individually based on their own hit test mode, but evaluate all computational hits before evaluating any color encoding hits.
*/
ChartHitTestMode[ChartHitTestMode["MixedFavoringComputational"] = 4] = "MixedFavoringComputational";
return ChartHitTestMode;
})({});
/**
* @hidden
*/
var ChartHitTestMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('ChartHitTestMode', 'Auto,0|Computational,1|ColorEncoded,2|Mixed,3|MixedFavoringComputational,4');
/*
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.
*/
/**
* Describes available types of UI response to user panning and zooming operations.
*/
var WindowResponse = /*@__PURE__*/ (function (WindowResponse) {
/**
* Defer the view update until after the user action is complete.
*/
WindowResponse[WindowResponse["Deferred"] = 0] = "Deferred";
/**
* Update the view immediately while the user action is happening.
*/
WindowResponse[WindowResponse["Immediate"] = 1] = "Immediate";
return WindowResponse;
})({});
/**
* @hidden
*/
var WindowResponse_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('WindowResponse', 'Deferred,0|Immediate,1');
/*
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.
*/
/**
* @hidden
*/
var SeriesViewerComponentsFromView = /** @class */ /*@__PURE__*/ (function (_super) {
tslib.__extends(SeriesViewerComponentsFromView, _super);
function SeriesViewerComponentsFromView() {
var _this = _super.apply(this, tslib.__spreadArray([], tslib.__read(arguments), false)) || this;
_this.a = null;
return _this;
}
SeriesViewerComponentsFromView.$t = igniteuiReactCore.markType(SeriesViewerComponentsFromView, 'SeriesViewerComponentsFromView');
return SeriesViewerComponentsFromView;
}(igniteuiReactCore.Base));
/*
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.
*/
/**
* Describes available locations of the axis labels in the chart.
*/
var ZoomCoercionMode = /*@__PURE__*/ (function (ZoomCoercionMode) {
/**
* Zoom coercion mode is decided by the component.
*/
ZoomCoercionMode[ZoomCoercionMode["Auto"] = 0] = "Auto";
/**
* The zoom window is constrained to the axis bounds.
*/
ZoomCoercionMode[ZoomCoercionMode["AxisConstrained"] = 1] = "AxisConstrained";
/**
* The zoom window is unconstrained by the axis bounds.
*/
ZoomCoercionMode[ZoomCoercionMode["Unconstrained"] = 2] = "Unconstrained";
return ZoomCoercionMode;
})({});
/**
* @hidden
*/
var ZoomCoercionMode_$type = /*@__PURE__*/ igniteuiReactCore.markEnum('ZoomCoercionMode', 'Auto,0|AxisConstrained,1|Unconstrained,2');
/*
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.
*/
/**
* @hidden
*/
var SyncSettings = /** @class */ /*@__PURE__*/ (function (_super) {
tslib.__extends(SyncSettings, _super);
function SyncSettings() {
var _this = _super.apply(this, tslib.__spreadArray([], tslib.__read(arguments), false)) || this;
_this.propertyChanged = null;
_this.propertyUpdated = null;
return _this;
}
SyncSettings.prototype.ai = function (a, b, c) {
if (this.propertyChanged != null) {
this.propertyChanged(this, new igniteuiReactCore.PropertyChangedEventArgs(a));
}
if (this.propertyUpdated != null) {
this.propertyUpdated(this, new igniteuiReactCore.PropertyUpdatedEventArgs(a, b, c));
}
};
SyncSettings.$t = igniteuiReactCore.markType(SyncSettings, 'SyncSettings', igniteuiReactCore.FrameworkElement.$, [igniteuiReactCore.INotifyPropertyChanged_$type]);
SyncSettings.$$p = igniteuiReactCore.markDep(igniteuiReactCore.DependencyProperty, igniteuiReactCore.PropertyMetadata, SyncSettings, 'ai', ['SyncChannel', [2, null], 'SynchronizeHorizontally', [0, true], 'SynchronizeVertically', [0, true]]);
return SyncSettings;
}(igniteuiReactCore.FrameworkElement));
/*
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.
*/
/**
* @hidden
*/
var SeriesViewerComponentsForView = /** @class */ /*@__PURE__*/ (function (_super) {
tslib.__extends(SeriesViewerComponentsForView, _super);
function SeriesViewerComponentsForView() {
return _super !== null && _super.apply(this, arguments) || this;
}
SeriesViewerComponentsForView.$t = igniteuiReactCore.markType(SeriesViewerComponentsForView, 'SeriesViewerComponentsForView');
return SeriesViewerComponentsForView;
}(igniteuiReactCore.Base));
/*
T