igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
120 lines (119 loc) • 3.63 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.fn = null;
this.fh = null;
this.fa = false;
this.fl = null;
this.fj = null;
this.fm = null;
this.fc = 0;
this.fg = null;
this.fi = null;
this.fe = null;
this.fk = null;
this.ff = null;
}
get_type() {
return "MarkerSeries";
}
get markerType() {
return this.fn;
}
set markerType(a) {
this.fn = a;
this.j("MarkerType");
}
get actualMarkerType() {
return this.fh;
}
set actualMarkerType(a) {
this.fh = a;
this.j("ActualMarkerType");
}
get isCustomMarkerCircular() {
return this.fa;
}
set isCustomMarkerCircular(a) {
this.fa = a;
this.j("IsCustomMarkerCircular");
}
get markerOutlineMode() {
return this.fl;
}
set markerOutlineMode(a) {
this.fl = a;
this.j("MarkerOutlineMode");
}
get markerFillMode() {
return this.fj;
}
set markerFillMode(a) {
this.fj = a;
this.j("MarkerFillMode");
}
get markerTemplateRef() {
return this.fm;
}
set markerTemplateRef(a) {
this.fm = a;
this.j("MarkerTemplateRef");
}
get markerThickness() {
return this.fc;
}
set markerThickness(a) {
this.fc = a;
this.j("MarkerThickness");
}
get actualMarkerTemplateRef() {
return this.fg;
}
set actualMarkerTemplateRef(a) {
this.fg = a;
this.j("ActualMarkerTemplateRef");
}
get markerBrush() {
return this.fi;
}
set markerBrush(a) {
this.fi = a;
this.j("MarkerBrush");
}
get actualMarkerBrush() {
return this.fe;
}
set actualMarkerBrush(a) {
this.fe = a;
this.j("ActualMarkerBrush");
}
get markerOutline() {
return this.fk;
}
set markerOutline(a) {
this.fk = a;
this.j("MarkerOutline");
}
get actualMarkerOutline() {
return this.ff;
}
set actualMarkerOutline(a) {
this.ff = a;
this.j("ActualMarkerOutline");
}
}
MarkerSeriesDescription.$t = markType(MarkerSeriesDescription, 'MarkerSeriesDescription', SeriesDescription.$);
return MarkerSeriesDescription;
})();