igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
170 lines (169 loc) • 5.65 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 ScatterPolygonSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ScatterPolygonSeriesDescription, _super);
function ScatterPolygonSeriesDescription() {
var _this = _super.call(this) || this;
_this.dv = null;
_this.d8 = null;
_this.d7 = null;
_this.dx = 0;
_this.d1 = null;
_this.d2 = null;
_this.dz = null;
_this.d5 = null;
_this.d0 = null;
_this.d3 = null;
_this.d6 = null;
_this.d4 = null;
return _this;
}
ScatterPolygonSeriesDescription.prototype.get_type = function () {
return "ScatterPolygonSeries";
};
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "shapeStyle", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.e("ShapeStyle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerType", {
get: function () {
return this.d8;
},
set: function (a) {
this.d8 = a;
this.e("MarkerType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerTemplateRef", {
get: function () {
return this.d7;
},
set: function (a) {
this.d7 = a;
this.e("MarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerThickness", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.e("MarkerThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "actualMarkerTemplateRef", {
get: function () {
return this.d1;
},
set: function (a) {
this.d1 = a;
this.e("ActualMarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerBrush", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.e("MarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "actualMarkerBrush", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.e("ActualMarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerOutline", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.e("MarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "actualMarkerOutline", {
get: function () {
return this.d0;
},
set: function (a) {
this.d0 = a;
this.e("ActualMarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerCollisionAvoidance", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.e("MarkerCollisionAvoidance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerOutlineMode", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.e("MarkerOutlineMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterPolygonSeriesDescription.prototype, "markerFillMode", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.e("MarkerFillMode");
},
enumerable: false,
configurable: true
});
ScatterPolygonSeriesDescription.$t = markType(ScatterPolygonSeriesDescription, 'ScatterPolygonSeriesDescription', ShapeSeriesBaseDescription.$);
return ScatterPolygonSeriesDescription;
}(ShapeSeriesBaseDescription));
export { ScatterPolygonSeriesDescription };