igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.45 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 { GeographicShapeSeriesBaseDescription } from "./GeographicShapeSeriesBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let GeographicPolylineSeriesDescription = /*@__PURE__*/ (() => {
class GeographicPolylineSeriesDescription extends GeographicShapeSeriesBaseDescription {
constructor() {
super();
this.f8 = null;
this.f6 = null;
this.f7 = null;
this.f3 = 0;
this.f2 = 0;
this.f9 = null;
}
get_type() {
return "GeographicPolylineSeries";
}
get shapeStyleSelectorRef() {
return this.f8;
}
set shapeStyleSelectorRef(a) {
this.f8 = a;
this.j("ShapeStyleSelectorRef");
}
get shapeFill() {
return this.f6;
}
set shapeFill(a) {
this.f6 = a;
this.j("ShapeFill");
}
get shapeStroke() {
return this.f7;
}
set shapeStroke(a) {
this.f7 = a;
this.j("ShapeStroke");
}
get shapeStrokeThickness() {
return this.f3;
}
set shapeStrokeThickness(a) {
this.f3 = a;
this.j("ShapeStrokeThickness");
}
get shapeOpacity() {
return this.f2;
}
set shapeOpacity(a) {
this.f2 = a;
this.j("ShapeOpacity");
}
get styleShapeRef() {
return this.f9;
}
set styleShapeRef(a) {
this.f9 = a;
this.j("StyleShapeRef");
}
}
GeographicPolylineSeriesDescription.$t = markType(GeographicPolylineSeriesDescription, 'GeographicPolylineSeriesDescription', GeographicShapeSeriesBaseDescription.$);
return GeographicPolylineSeriesDescription;
})();