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.dz = null;
this.dx = null;
this.dy = null;
this.du = 0;
this.dt = 0;
this.d0 = null;
}
get_type() {
return "GeographicPolylineSeries";
}
get shapeStyleSelectorRef() {
return this.dz;
}
set shapeStyleSelectorRef(a) {
this.dz = a;
this.e("ShapeStyleSelectorRef");
}
get shapeFill() {
return this.dx;
}
set shapeFill(a) {
this.dx = a;
this.e("ShapeFill");
}
get shapeStroke() {
return this.dy;
}
set shapeStroke(a) {
this.dy = a;
this.e("ShapeStroke");
}
get shapeStrokeThickness() {
return this.du;
}
set shapeStrokeThickness(a) {
this.du = a;
this.e("ShapeStrokeThickness");
}
get shapeOpacity() {
return this.dt;
}
set shapeOpacity(a) {
this.dt = a;
this.e("ShapeOpacity");
}
get styleShapeRef() {
return this.d0;
}
set styleShapeRef(a) {
this.d0 = a;
this.e("StyleShapeRef");
}
}
GeographicPolylineSeriesDescription.$t = markType(GeographicPolylineSeriesDescription, 'GeographicPolylineSeriesDescription', GeographicShapeSeriesBaseDescription.$);
return GeographicPolylineSeriesDescription;
})();