igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
48 lines (47 loc) • 1.56 kB
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.
*/
import { Base, markType } from "igniteui-react-core";
/**
* @hidden
*/
export let CategoryChartMockDataItem = /*@__PURE__*/ (() => {
class CategoryChartMockDataItem extends Base {
constructor() {
super(...arguments);
this._label = null;
this._series1 = 0;
this._series2 = 0;
this._series3 = 0;
}
get label() {
return this._label;
}
set label(a) {
this._label = a;
}
get series1() {
return this._series1;
}
set series1(a) {
this._series1 = a;
}
get series2() {
return this._series2;
}
set series2(a) {
this._series2 = a;
}
get series3() {
return this._series3;
}
set series3(a) {
this._series3 = a;
}
}
CategoryChartMockDataItem.$t = /*@__PURE__*/ markType(CategoryChartMockDataItem, 'CategoryChartMockDataItem');
return CategoryChartMockDataItem;
})();