igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
104 lines (103 loc) • 3.18 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let MarkerSeriesDescription = /*@__PURE__*/ (() => {
class MarkerSeriesDescription extends SeriesDescription {
constructor() {
super();
this.de = null;
this.dc = null;
this.da = null;
this.dd = null;
this.c4 = 0;
this.c8 = null;
this.c9 = null;
this.c6 = null;
this.db = null;
this.c7 = null;
}
get_type() {
return "MarkerSeries";
}
get markerType() {
return this.de;
}
set markerType(a) {
this.de = a;
this.e("MarkerType");
}
get markerOutlineMode() {
return this.dc;
}
set markerOutlineMode(a) {
this.dc = a;
this.e("MarkerOutlineMode");
}
get markerFillMode() {
return this.da;
}
set markerFillMode(a) {
this.da = a;
this.e("MarkerFillMode");
}
get markerTemplateRef() {
return this.dd;
}
set markerTemplateRef(a) {
this.dd = a;
this.e("MarkerTemplateRef");
}
get markerThickness() {
return this.c4;
}
set markerThickness(a) {
this.c4 = a;
this.e("MarkerThickness");
}
get actualMarkerTemplateRef() {
return this.c8;
}
set actualMarkerTemplateRef(a) {
this.c8 = a;
this.e("ActualMarkerTemplateRef");
}
get markerBrush() {
return this.c9;
}
set markerBrush(a) {
this.c9 = a;
this.e("MarkerBrush");
}
get actualMarkerBrush() {
return this.c6;
}
set actualMarkerBrush(a) {
this.c6 = a;
this.e("ActualMarkerBrush");
}
get markerOutline() {
return this.db;
}
set markerOutline(a) {
this.db = a;
this.e("MarkerOutline");
}
get actualMarkerOutline() {
return this.c7;
}
set actualMarkerOutline(a) {
this.c7 = a;
this.e("ActualMarkerOutline");
}
}
MarkerSeriesDescription.$t = markType(MarkerSeriesDescription, 'MarkerSeriesDescription', SeriesDescription.$);
return MarkerSeriesDescription;
})();