igniteui-react-core
Version:
Ignite UI React Core.
240 lines (239 loc) • 6.94 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 { MarkerSeriesDescription } from "./MarkerSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let PolarBaseDescription = /*@__PURE__*/ (() => {
class PolarBaseDescription extends MarkerSeriesDescription {
get_type() {
return "PolarBase";
}
constructor() {
super();
this.gi = null;
this.gr = null;
this.gm = null;
this.gl = null;
this.gf = null;
this.go = null;
this.fy = false;
this.f6 = 0;
this.gt = null;
this.gs = null;
this.ge = null;
this.f3 = 0;
this.ft = null;
this.f7 = 0;
this.f8 = 0;
this.fv = false;
this.gd = null;
this.gn = null;
this.f5 = 0;
this.fx = false;
this.fw = false;
this.gp = null;
this.gg = null;
this.gq = null;
this.gh = null;
this.gk = null;
this.gj = null;
}
get angleMemberPath() {
return this.gi;
}
set angleMemberPath(a) {
this.gi = a;
this.g("AngleMemberPath");
}
get radiusMemberPath() {
return this.gr;
}
set radiusMemberPath(a) {
this.gr = a;
this.g("RadiusMemberPath");
}
get highlightedRadiusMemberPath() {
return this.gm;
}
set highlightedRadiusMemberPath(a) {
this.gm = a;
this.g("HighlightedRadiusMemberPath");
}
get highlightedAngleMemberPath() {
return this.gl;
}
set highlightedAngleMemberPath(a) {
this.gl = a;
this.g("HighlightedAngleMemberPath");
}
get angleAxisRef() {
return this.gf;
}
set angleAxisRef(a) {
this.gf = a;
this.g("AngleAxisRef");
}
get radiusAxisRef() {
return this.go;
}
set radiusAxisRef(a) {
this.go = a;
this.g("RadiusAxisRef");
}
get useCartesianInterpolation() {
return this.fy;
}
set useCartesianInterpolation(a) {
this.fy = a;
this.g("UseCartesianInterpolation");
}
get maximumMarkers() {
return this.f6;
}
set maximumMarkers(a) {
this.f6 = a;
this.g("MaximumMarkers");
}
get trendLineType() {
return this.gt;
}
set trendLineType(a) {
this.gt = a;
this.g("TrendLineType");
}
get trendLineBrush() {
return this.gs;
}
set trendLineBrush(a) {
this.gs = a;
this.g("TrendLineBrush");
}
get actualTrendLineBrush() {
return this.ge;
}
set actualTrendLineBrush(a) {
this.ge = a;
this.g("ActualTrendLineBrush");
}
get trendLineThickness() {
return this.f3;
}
set trendLineThickness(a) {
this.f3 = a;
this.g("TrendLineThickness");
}
get trendLineDashArray() {
return this.ft;
}
set trendLineDashArray(a) {
this.ft = a;
this.g("TrendLineDashArray");
}
get trendLinePeriod() {
return this.f7;
}
set trendLinePeriod(a) {
this.f7 = a;
this.g("TrendLinePeriod");
}
get trendLineZIndex() {
return this.f8;
}
set trendLineZIndex(a) {
this.f8 = a;
this.g("TrendLineZIndex");
}
get clipSeriesToBounds() {
return this.fv;
}
set clipSeriesToBounds(a) {
this.fv = a;
this.g("ClipSeriesToBounds");
}
get actualItemSearchMode() {
return this.gd;
}
set actualItemSearchMode(a) {
this.gd = a;
this.g("ActualItemSearchMode");
}
get itemSearchMode() {
return this.gn;
}
set itemSearchMode(a) {
this.gn = a;
this.g("ItemSearchMode");
}
get itemSearchThreshold() {
return this.f5;
}
set itemSearchThreshold(a) {
this.f5 = a;
this.g("ItemSearchThreshold");
}
get isCustomPolarStyleAllowed() {
return this.fx;
}
set isCustomPolarStyleAllowed(a) {
this.fx = a;
this.g("IsCustomPolarStyleAllowed");
}
get isCustomPolarMarkerStyleAllowed() {
return this.fw;
}
set isCustomPolarMarkerStyleAllowed(a) {
this.fw = a;
this.g("IsCustomPolarMarkerStyleAllowed");
}
get radiusMemberAsLegendLabel() {
return this.gp;
}
set radiusMemberAsLegendLabel(a) {
this.gp = a;
this.g("RadiusMemberAsLegendLabel");
}
get angleMemberAsLegendLabel() {
return this.gg;
}
set angleMemberAsLegendLabel(a) {
this.gg = a;
this.g("AngleMemberAsLegendLabel");
}
get radiusMemberAsLegendUnit() {
return this.gq;
}
set radiusMemberAsLegendUnit(a) {
this.gq = a;
this.g("RadiusMemberAsLegendUnit");
}
get angleMemberAsLegendUnit() {
return this.gh;
}
set angleMemberAsLegendUnit(a) {
this.gh = a;
this.g("AngleMemberAsLegendUnit");
}
get assigningPolarStyleRef() {
return this.gk;
}
set assigningPolarStyleRef(a) {
this.gk = a;
this.g("AssigningPolarStyleRef");
}
get assigningPolarMarkerStyleRef() {
return this.gj;
}
set assigningPolarMarkerStyleRef(a) {
this.gj = a;
this.g("AssigningPolarMarkerStyleRef");
}
}
PolarBaseDescription.$t = /*@__PURE__*/ markType(PolarBaseDescription, 'PolarBaseDescription', MarkerSeriesDescription.$);
return PolarBaseDescription;
})();