UNPKG

igniteui-react-charts

Version:

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

48 lines (47 loc) 1.77 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 { PieChartBase } from "./PieChartBase"; import { PieChartBaseView } from "./PieChartBaseView"; import { markType } from "igniteui-react-core"; /** * @hidden */ var XamPieChart = /** @class */ /*@__PURE__*/ (function (_super) { __extends(XamPieChart, _super); function XamPieChart() { var _this = _super.call(this) || this; _this.jf = null; _this.ab = XamPieChart.$; return _this; } XamPieChart.prototype.a3 = function () { return new XamPieChartView(this); }; XamPieChart.prototype.go = function (a) { _super.prototype.go.call(this, a); this.jf = a; }; XamPieChart.$t = markType(XamPieChart, 'XamPieChart', PieChartBase.$); return XamPieChart; }(PieChartBase)); export { XamPieChart }; /** * @hidden */ var XamPieChartView = /** @class */ /*@__PURE__*/ (function (_super) { __extends(XamPieChartView, _super); function XamPieChartView(a) { var _this = _super.call(this, a) || this; _this.b6 = null; _this.b6 = a; return _this; } XamPieChartView.$t = markType(XamPieChartView, 'XamPieChartView', PieChartBaseView.$); return XamPieChartView; }(PieChartBaseView)); export { XamPieChartView };