UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

39 lines (38 loc) 1.98 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 { __extends } from "tslib"; import { Base, typeCast, markType } from "igniteui-react-core"; import { IVerticalRangeCategorySeriesProxy_$type } from "./IVerticalRangeCategorySeriesProxy"; import { VerticalRangeCategorySeries } from "./VerticalRangeCategorySeries"; import { NumericXAxis } from "./NumericXAxis"; /** * @hidden */ var VerticalRangeCategorySeriesProxy = /** @class */ /*@__PURE__*/ (function (_super) { __extends(VerticalRangeCategorySeriesProxy, _super); function VerticalRangeCategorySeriesProxy() { return _super !== null && _super.apply(this, arguments) || this; } VerticalRangeCategorySeriesProxy.prototype.matchesType = function (a) { return typeCast(VerticalRangeCategorySeries.$, a) !== null; }; VerticalRangeCategorySeriesProxy.prototype.setHighMemberPath = function (a, b) { a.abx = b; }; VerticalRangeCategorySeriesProxy.prototype.setLowMemberPath = function (a, b) { a.ab0 = b; }; VerticalRangeCategorySeriesProxy.prototype.setXAxis = function (a, b) { a.xAxis = typeCast(NumericXAxis.$, b); }; VerticalRangeCategorySeriesProxy.prototype.setYAxis = function (a, b) { a.yAxis = b; }; VerticalRangeCategorySeriesProxy.$t = markType(VerticalRangeCategorySeriesProxy, 'VerticalRangeCategorySeriesProxy', Base.$, [IVerticalRangeCategorySeriesProxy_$type]); return VerticalRangeCategorySeriesProxy; }(Base)); export { VerticalRangeCategorySeriesProxy };