igniteui-react-core
Version:
Ignite UI React Core.
38 lines (37 loc) • 1.66 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 { __extends } from "tslib";
import { ShapeSeriesBaseDescription } from "./ShapeSeriesBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ScatterPolylineSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ScatterPolylineSeriesDescription, _super);
function ScatterPolylineSeriesDescription() {
var _this = _super.call(this) || this;
_this.f3 = null;
return _this;
}
ScatterPolylineSeriesDescription.prototype.get_type = function () {
return "ScatterPolylineSeries";
};
Object.defineProperty(ScatterPolylineSeriesDescription.prototype, "shapeStyle", {
get: function () {
return this.f3;
},
set: function (a) {
this.f3 = a;
this.g("ShapeStyle");
},
enumerable: false,
configurable: true
});
ScatterPolylineSeriesDescription.$t = markType(ScatterPolylineSeriesDescription, 'ScatterPolylineSeriesDescription', ShapeSeriesBaseDescription.$);
return ScatterPolylineSeriesDescription;
}(ShapeSeriesBaseDescription));
export { ScatterPolylineSeriesDescription };