igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
120 lines (119 loc) • 3.71 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 { ShapeSeriesBaseDescription } from "./ShapeSeriesBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ScatterPolygonSeriesDescription = /*@__PURE__*/ (() => {
class ScatterPolygonSeriesDescription extends ShapeSeriesBaseDescription {
constructor() {
super();
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;
}
get_type() {
return "ScatterPolygonSeries";
}
get shapeStyle() {
return this.dv;
}
set shapeStyle(a) {
this.dv = a;
this.e("ShapeStyle");
}
get markerType() {
return this.d8;
}
set markerType(a) {
this.d8 = a;
this.e("MarkerType");
}
get markerTemplateRef() {
return this.d7;
}
set markerTemplateRef(a) {
this.d7 = a;
this.e("MarkerTemplateRef");
}
get markerThickness() {
return this.dx;
}
set markerThickness(a) {
this.dx = a;
this.e("MarkerThickness");
}
get actualMarkerTemplateRef() {
return this.d1;
}
set actualMarkerTemplateRef(a) {
this.d1 = a;
this.e("ActualMarkerTemplateRef");
}
get markerBrush() {
return this.d2;
}
set markerBrush(a) {
this.d2 = a;
this.e("MarkerBrush");
}
get actualMarkerBrush() {
return this.dz;
}
set actualMarkerBrush(a) {
this.dz = a;
this.e("ActualMarkerBrush");
}
get markerOutline() {
return this.d5;
}
set markerOutline(a) {
this.d5 = a;
this.e("MarkerOutline");
}
get actualMarkerOutline() {
return this.d0;
}
set actualMarkerOutline(a) {
this.d0 = a;
this.e("ActualMarkerOutline");
}
get markerCollisionAvoidance() {
return this.d3;
}
set markerCollisionAvoidance(a) {
this.d3 = a;
this.e("MarkerCollisionAvoidance");
}
get markerOutlineMode() {
return this.d6;
}
set markerOutlineMode(a) {
this.d6 = a;
this.e("MarkerOutlineMode");
}
get markerFillMode() {
return this.d4;
}
set markerFillMode(a) {
this.d4 = a;
this.e("MarkerFillMode");
}
}
ScatterPolygonSeriesDescription.$t = markType(ScatterPolygonSeriesDescription, 'ScatterPolygonSeriesDescription', ShapeSeriesBaseDescription.$);
return ScatterPolygonSeriesDescription;
})();