UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

32 lines (31 loc) 1.34 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 { Base, typeCast, markType } from "igniteui-angular-core"; import { IVerticalRangeCategorySeriesProxy_$type } from "./IVerticalRangeCategorySeriesProxy"; import { VerticalRangeCategorySeries } from "./VerticalRangeCategorySeries"; import { NumericXAxis } from "./NumericXAxis"; /** * @hidden */ export class VerticalRangeCategorySeriesProxy extends Base { static { this.$t = markType(VerticalRangeCategorySeriesProxy, 'VerticalRangeCategorySeriesProxy', Base.$, [IVerticalRangeCategorySeriesProxy_$type]); } matchesType(a) { return typeCast(VerticalRangeCategorySeries.$, a) !== null; } setHighMemberPath(a, b) { a.acj = b; } setLowMemberPath(a, b) { a.acm = b; } setXAxis(a, b) { a.xAxis = typeCast(NumericXAxis.$, b); } setYAxis(a, b) { a.yAxis = b; } }