igniteui-react-core
Version:
Ignite UI React Core.
120 lines (119 loc) • 3.6 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 {
get_type() {
return "ScatterPolygonSeries";
}
constructor() {
super();
this.f3 = null;
this.gg = null;
this.gf = null;
this.f5 = 0;
this.f9 = null;
this.ga = null;
this.f7 = null;
this.gd = null;
this.f8 = null;
this.gb = null;
this.ge = null;
this.gc = null;
}
get shapeStyle() {
return this.f3;
}
set shapeStyle(a) {
this.f3 = a;
this.g("ShapeStyle");
}
get markerType() {
return this.gg;
}
set markerType(a) {
this.gg = a;
this.g("MarkerType");
}
get markerTemplateRef() {
return this.gf;
}
set markerTemplateRef(a) {
this.gf = a;
this.g("MarkerTemplateRef");
}
get markerThickness() {
return this.f5;
}
set markerThickness(a) {
this.f5 = a;
this.g("MarkerThickness");
}
get actualMarkerTemplateRef() {
return this.f9;
}
set actualMarkerTemplateRef(a) {
this.f9 = a;
this.g("ActualMarkerTemplateRef");
}
get markerBrush() {
return this.ga;
}
set markerBrush(a) {
this.ga = a;
this.g("MarkerBrush");
}
get actualMarkerBrush() {
return this.f7;
}
set actualMarkerBrush(a) {
this.f7 = a;
this.g("ActualMarkerBrush");
}
get markerOutline() {
return this.gd;
}
set markerOutline(a) {
this.gd = a;
this.g("MarkerOutline");
}
get actualMarkerOutline() {
return this.f8;
}
set actualMarkerOutline(a) {
this.f8 = a;
this.g("ActualMarkerOutline");
}
get markerCollisionAvoidance() {
return this.gb;
}
set markerCollisionAvoidance(a) {
this.gb = a;
this.g("MarkerCollisionAvoidance");
}
get markerOutlineMode() {
return this.ge;
}
set markerOutlineMode(a) {
this.ge = a;
this.g("MarkerOutlineMode");
}
get markerFillMode() {
return this.gc;
}
set markerFillMode(a) {
this.gc = a;
this.g("MarkerFillMode");
}
}
ScatterPolygonSeriesDescription.$t = /*@__PURE__*/ markType(ScatterPolygonSeriesDescription, 'ScatterPolygonSeriesDescription', ShapeSeriesBaseDescription.$);
return ScatterPolygonSeriesDescription;
})();