igniteui-webcomponents-charts 5.0.1 → 5.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-charts.umd.js +809 -708
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/AnchoredRadialBucketCalculator_combined.js +2 -2
- package/esm2015/lib/CalloutLayer_combined.js +1 -1
- package/esm2015/lib/CategoryBucketCalculator_combined.js +50 -50
- package/esm2015/lib/DataPieBaseChart.js +311 -298
- package/esm2015/lib/DataPieChart.js +73 -73
- package/esm2015/lib/PieChartViewManager_combined.js +11 -1
- package/esm2015/lib/PolarBase_combined.js +24 -24
- package/esm2015/lib/RadialBucketCalculator_combined.js +32 -32
- package/esm2015/lib/RadialPieSeries_combined.js +153 -78
- package/esm2015/lib/ScatterBase_combined.js +20 -20
- package/esm2015/lib/ScatterPolygonSeries_combined.js +20 -20
- package/esm2015/lib/SeriesViewer_combined.js +2 -2
- package/esm2015/lib/StackedSeriesCreatedEventArgs_combined.js +2 -2
- package/esm2015/lib/igc-data-pie-base-chart-component.js +91 -83
- package/esm2015/lib/igc-data-pie-chart-component.js +23 -23
- package/esm2015/lib/igc-pie-chart-base-component.js +1 -1
- package/esm2015/lib/igc-radial-pie-series-component.js +20 -9
- package/esm2015/public_api.js +0 -1
- package/esm5/lib/AnchoredRadialBucketCalculator_combined.js +2 -2
- package/esm5/lib/CalloutLayer_combined.js +1 -1
- package/esm5/lib/CategoryBucketCalculator_combined.js +50 -50
- package/esm5/lib/DataPieBaseChart.js +285 -268
- package/esm5/lib/DataPieChart.js +65 -65
- package/esm5/lib/PieChartViewManager_combined.js +11 -1
- package/esm5/lib/PolarBase_combined.js +24 -24
- package/esm5/lib/RadialBucketCalculator_combined.js +32 -32
- package/esm5/lib/RadialPieSeries_combined.js +160 -76
- package/esm5/lib/ScatterBase_combined.js +20 -20
- package/esm5/lib/ScatterPolygonSeries_combined.js +20 -20
- package/esm5/lib/SeriesViewer_combined.js +2 -2
- package/esm5/lib/StackedSeriesCreatedEventArgs_combined.js +2 -2
- package/esm5/lib/igc-data-pie-base-chart-component.js +95 -83
- package/esm5/lib/igc-data-pie-chart-component.js +23 -23
- package/esm5/lib/igc-pie-chart-base-component.js +1 -1
- package/esm5/lib/igc-radial-pie-series-component.js +24 -9
- package/esm5/public_api.js +0 -1
- package/fesm2015/igniteui-webcomponents-charts.js +826 -744
- package/fesm5/igniteui-webcomponents-charts.js +808 -705
- package/lib/AnchoredRadialBucketCalculator_combined.d.ts +1 -1
- package/lib/CategoryBucketCalculator_combined.d.ts +1 -1
- package/lib/DataPieBaseChart.d.ts +96 -92
- package/lib/DataPieChart.d.ts +26 -26
- package/lib/PieChartViewManager_combined.d.ts +1 -1
- package/lib/PolarBase_combined.d.ts +1 -1
- package/lib/RadialBucketCalculator_combined.d.ts +2 -2
- package/lib/RadialPieSeries_combined.d.ts +18 -12
- package/lib/ScatterBase_combined.d.ts +1 -1
- package/lib/ScatterPolygonSeries_combined.d.ts +1 -1
- package/lib/SeriesViewer_combined.d.ts +1 -1
- package/lib/StackedSeriesCreatedEventArgs_combined.d.ts +1 -1
- package/lib/igc-data-pie-base-chart-component.d.ts +3 -0
- package/lib/igc-pie-chart-base-component.d.ts +1 -1
- package/lib/igc-radial-pie-series-component.d.ts +6 -0
- package/package.json +2 -2
- package/public_api.d.ts +0 -1
- package/esm2015/lib/LegendEmptyValuesMode.js +0 -29
- package/esm5/lib/LegendEmptyValuesMode.js +0 -29
- package/lib/LegendEmptyValuesMode.d.ts +0 -22
|
@@ -11,6 +11,7 @@ import { NumericRadiusAxis } from "./NumericRadiusAxis";
|
|
|
11
11
|
import { typeCast, runOn, delegateCombine, enumGetBox, markType } from "igniteui-webcomponents-core";
|
|
12
12
|
import { PieChartSweepDirection_$type } from "./PieChartSweepDirection";
|
|
13
13
|
import { CalloutCollisionMode_$type } from "igniteui-webcomponents-core";
|
|
14
|
+
import { LegendEmptyValuesMode_$type } from "igniteui-webcomponents-core";
|
|
14
15
|
import { OthersCategoryType_$type } from "igniteui-webcomponents-core";
|
|
15
16
|
import { AxisRangeBufferMode_$type } from "./AxisRangeBufferMode";
|
|
16
17
|
import { RadialLabelMode_$type } from "igniteui-webcomponents-core";
|
|
@@ -27,49 +28,50 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
27
28
|
__extends(DataPieBaseChart, _super);
|
|
28
29
|
function DataPieBaseChart() {
|
|
29
30
|
var _this = _super.call(this) || this;
|
|
30
|
-
_this.
|
|
31
|
+
_this.aie = null;
|
|
31
32
|
_this.agk = null;
|
|
32
|
-
_this.ah8 = null;
|
|
33
|
-
_this.agi = null;
|
|
34
33
|
_this.aia = null;
|
|
34
|
+
_this.agi = null;
|
|
35
|
+
_this.aic = null;
|
|
35
36
|
_this.agj = null;
|
|
36
|
-
_this.
|
|
37
|
+
_this.ah9 = null;
|
|
37
38
|
_this.agh = null;
|
|
38
|
-
_this.
|
|
39
|
-
_this.
|
|
39
|
+
_this.ahl = 0;
|
|
40
|
+
_this.ag1 = 0;
|
|
40
41
|
_this.agr = 6;
|
|
41
|
-
_this.
|
|
42
|
-
_this.
|
|
43
|
-
_this.
|
|
44
|
-
_this.
|
|
45
|
-
_this.
|
|
46
|
-
_this.
|
|
47
|
-
_this.
|
|
48
|
-
_this.
|
|
49
|
-
_this.
|
|
42
|
+
_this.aj0 = null;
|
|
43
|
+
_this.ajz = null;
|
|
44
|
+
_this.aif = null;
|
|
45
|
+
_this.ah8 = null;
|
|
46
|
+
_this.agv = 0;
|
|
47
|
+
_this.agz = 1;
|
|
48
|
+
_this.ahm = 3;
|
|
49
|
+
_this.aib = null;
|
|
50
|
+
_this.ah7 = null;
|
|
51
|
+
_this.ahc = true;
|
|
50
52
|
_this.agp = 0;
|
|
51
|
-
_this.
|
|
52
|
-
_this.
|
|
53
|
-
_this.
|
|
54
|
-
_this.
|
|
55
|
-
_this.
|
|
56
|
-
_this.
|
|
53
|
+
_this.ahj = 0;
|
|
54
|
+
_this.ahk = 0;
|
|
55
|
+
_this.ahp = 0;
|
|
56
|
+
_this.ahd = false;
|
|
57
|
+
_this.ah5 = 10;
|
|
58
|
+
_this.ahr = NaN;
|
|
59
|
+
_this.ahq = NaN;
|
|
60
|
+
_this.ahs = 0;
|
|
61
|
+
_this.ahn = NaN;
|
|
57
62
|
_this.aho = NaN;
|
|
58
|
-
_this.
|
|
59
|
-
_this.
|
|
60
|
-
_this.
|
|
61
|
-
_this.
|
|
62
|
-
_this.
|
|
63
|
-
_this.ag3 = 0;
|
|
64
|
-
_this.ag8 = true;
|
|
65
|
-
_this.ag9 = true;
|
|
63
|
+
_this.aid = " - ";
|
|
64
|
+
_this.ag6 = 0;
|
|
65
|
+
_this.ag5 = 0;
|
|
66
|
+
_this.aha = true;
|
|
67
|
+
_this.ahb = true;
|
|
66
68
|
_this.agt = 0;
|
|
67
69
|
return _this;
|
|
68
70
|
}
|
|
69
|
-
DataPieBaseChart.prototype.
|
|
70
|
-
this.
|
|
71
|
+
DataPieBaseChart.prototype.ajv = function (a) {
|
|
72
|
+
this.ajw(function (b, c) { return a(b); });
|
|
71
73
|
};
|
|
72
|
-
DataPieBaseChart.prototype.
|
|
74
|
+
DataPieBaseChart.prototype.ajw = function (a) {
|
|
73
75
|
if (this.dataChart == null) {
|
|
74
76
|
return;
|
|
75
77
|
}
|
|
@@ -80,10 +82,10 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80
82
|
}
|
|
81
83
|
}
|
|
82
84
|
};
|
|
83
|
-
DataPieBaseChart.prototype.
|
|
84
|
-
this.
|
|
85
|
+
DataPieBaseChart.prototype.ajt = function (a) {
|
|
86
|
+
this.aju(function (b, c) { return a(b); });
|
|
85
87
|
};
|
|
86
|
-
DataPieBaseChart.prototype.
|
|
88
|
+
DataPieBaseChart.prototype.aju = function (a) {
|
|
87
89
|
if (this.dataChart == null) {
|
|
88
90
|
return;
|
|
89
91
|
}
|
|
@@ -97,16 +99,16 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
97
99
|
DataPieBaseChart.prototype.wg = function () {
|
|
98
100
|
var a = this.bj.dataSeries != null ? this.bj.dataSeries.count : 0;
|
|
99
101
|
_super.prototype.wg.call(this);
|
|
100
|
-
if (this.
|
|
101
|
-
var b = this.
|
|
102
|
+
if (this.ail != null) {
|
|
103
|
+
var b = this.ail;
|
|
102
104
|
this.angleAxis.f1 = b;
|
|
103
105
|
}
|
|
104
106
|
else {
|
|
105
107
|
this.angleAxis.f1 = this.ab2 == null ? RadialBaseChart.adj(this.angleAxis, this.bj.dataSeries) : this.ab2;
|
|
106
108
|
}
|
|
107
109
|
this.angleAxis.itemsSource = this.dataChart != null && this.dataChart.series.count > 0 ? this.dataChart.series._inner[0].itemsSource : null;
|
|
108
|
-
if (this.
|
|
109
|
-
this.angleAxis.og = this.
|
|
110
|
+
if (this.ajq != null) {
|
|
111
|
+
this.angleAxis.og = this.ajq;
|
|
110
112
|
}
|
|
111
113
|
else {
|
|
112
114
|
this.angleAxis.og = (this.dataChart != null && this.dataChart.series.count > 0 && typeCast(RadialPieSeries.$, this.dataChart.series._inner[0]) !== null) ? this.dataChart.series._inner[0].acm : null;
|
|
@@ -131,17 +133,17 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
131
133
|
return true;
|
|
132
134
|
};
|
|
133
135
|
DataPieBaseChart.prototype.wh = function () {
|
|
134
|
-
this.valueAxis.lj = this.
|
|
135
|
-
this.valueAxis.ma = this.
|
|
136
|
+
this.valueAxis.lj = this.ahi;
|
|
137
|
+
this.valueAxis.ma = this.ah6;
|
|
136
138
|
};
|
|
137
139
|
Object.defineProperty(DataPieBaseChart.prototype, "angleAxis", {
|
|
138
140
|
get: function () {
|
|
139
|
-
return this.
|
|
141
|
+
return this.ag3;
|
|
140
142
|
},
|
|
141
143
|
set: function (a) {
|
|
142
144
|
var b = this.angleAxis;
|
|
143
145
|
if (a != b) {
|
|
144
|
-
this.
|
|
146
|
+
this.ag3 = a;
|
|
145
147
|
this.vl("AngleAxis", b, this.angleAxis);
|
|
146
148
|
}
|
|
147
149
|
},
|
|
@@ -150,24 +152,24 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
150
152
|
});
|
|
151
153
|
Object.defineProperty(DataPieBaseChart.prototype, "valueAxis", {
|
|
152
154
|
get: function () {
|
|
153
|
-
return this.
|
|
155
|
+
return this.agx;
|
|
154
156
|
},
|
|
155
157
|
set: function (a) {
|
|
156
158
|
var b = this.valueAxis;
|
|
157
159
|
if (a != b) {
|
|
158
|
-
this.
|
|
160
|
+
this.agx = a;
|
|
159
161
|
this.vl("ValueAxis", b, this.valueAxis);
|
|
160
162
|
}
|
|
161
163
|
},
|
|
162
164
|
enumerable: false,
|
|
163
165
|
configurable: true
|
|
164
166
|
});
|
|
165
|
-
DataPieBaseChart.prototype.
|
|
167
|
+
DataPieBaseChart.prototype.get_ahf = function () {
|
|
166
168
|
return false;
|
|
167
169
|
};
|
|
168
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
170
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahf", {
|
|
169
171
|
get: function () {
|
|
170
|
-
return this.
|
|
172
|
+
return this.get_ahf();
|
|
171
173
|
},
|
|
172
174
|
enumerable: false,
|
|
173
175
|
configurable: true
|
|
@@ -175,10 +177,10 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
175
177
|
DataPieBaseChart.prototype.dg = function (a, b) {
|
|
176
178
|
var c = null;
|
|
177
179
|
if (b == 34) {
|
|
178
|
-
c = this.
|
|
180
|
+
c = this.ag9(a, b);
|
|
179
181
|
}
|
|
180
182
|
if (a.index > 0) {
|
|
181
|
-
if (!this.
|
|
183
|
+
if (!this.ahf) {
|
|
182
184
|
if (c != null) {
|
|
183
185
|
c.o0();
|
|
184
186
|
}
|
|
@@ -190,11 +192,11 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
190
192
|
DataPieBaseChart.prototype.uy = function (a, b) {
|
|
191
193
|
_super.prototype.uy.call(this, a, b);
|
|
192
194
|
if (this.g0(a) && this.ci.isCalloutLayer(a)) {
|
|
193
|
-
if (this.
|
|
194
|
-
this.ci.setCalloutLightColor(a, this.
|
|
195
|
+
if (this.aj2 != null) {
|
|
196
|
+
this.ci.setCalloutLightColor(a, this.aj2);
|
|
195
197
|
}
|
|
196
|
-
if (this.
|
|
197
|
-
this.ci.setCalloutDarkColor(a, this.
|
|
198
|
+
if (this.aj1 != null) {
|
|
199
|
+
this.ci.setCalloutDarkColor(a, this.aj1);
|
|
198
200
|
}
|
|
199
201
|
var c = this.ak;
|
|
200
202
|
if (this.ags != 0) {
|
|
@@ -203,7 +205,7 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
203
205
|
this.ci.setCollisionMode(a, c);
|
|
204
206
|
}
|
|
205
207
|
};
|
|
206
|
-
DataPieBaseChart.prototype.
|
|
208
|
+
DataPieBaseChart.prototype.ag9 = function (a, b) {
|
|
207
209
|
var c = null;
|
|
208
210
|
if (b == 34) {
|
|
209
211
|
c = this.di(34);
|
|
@@ -211,30 +213,31 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
211
213
|
else {
|
|
212
214
|
c = this.di(34);
|
|
213
215
|
}
|
|
214
|
-
if (this.
|
|
215
|
-
c.acm = this.
|
|
216
|
+
if (this.ajq != null) {
|
|
217
|
+
c.acm = this.ajq;
|
|
216
218
|
}
|
|
217
219
|
else {
|
|
218
220
|
c.acm = a.getMemberPathFor(0);
|
|
219
221
|
}
|
|
220
|
-
if (this.
|
|
221
|
-
c.
|
|
222
|
+
if (this.aio != null) {
|
|
223
|
+
c.ado = this.aio;
|
|
222
224
|
}
|
|
225
|
+
c.ade = this.agw;
|
|
223
226
|
c.yr = this.angleAxis;
|
|
224
227
|
c.yw = this.valueAxis;
|
|
225
228
|
c.g7 = true;
|
|
226
229
|
c.ab6 = true;
|
|
227
|
-
c.aas = this.
|
|
230
|
+
c.aas = this.aja;
|
|
228
231
|
c.yj = this.ago;
|
|
229
|
-
c.aap = this.
|
|
232
|
+
c.aap = this.ai3;
|
|
230
233
|
c.yi = this.agn;
|
|
231
|
-
c.aai = this.
|
|
234
|
+
c.aai = this.aiu;
|
|
232
235
|
c.yg = this.agm;
|
|
233
|
-
c.aam = this.
|
|
236
|
+
c.aam = this.aiq;
|
|
234
237
|
c.yh = this.agl;
|
|
235
|
-
c.y5 = this.
|
|
236
|
-
c.y6 = this.
|
|
237
|
-
c.z4 = this.
|
|
238
|
+
c.y5 = this.ag8;
|
|
239
|
+
c.y6 = this.ag7;
|
|
240
|
+
c.z4 = this.ai8;
|
|
238
241
|
return c;
|
|
239
242
|
};
|
|
240
243
|
DataPieBaseChart.prototype.zm = function () {
|
|
@@ -247,12 +250,12 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
247
250
|
this.angleAxis = new ProportionalCategoryAngleAxis();
|
|
248
251
|
this.angleAxis.name = "angleAxis";
|
|
249
252
|
var a = this.angleAxis;
|
|
250
|
-
a.propertyChanged = delegateCombine(a.propertyChanged, runOn(this, this.
|
|
253
|
+
a.propertyChanged = delegateCombine(a.propertyChanged, runOn(this, this.ajx));
|
|
251
254
|
this.angleAxis.k2 = 0;
|
|
252
255
|
this.valueAxis = new NumericRadiusAxis();
|
|
253
256
|
this.valueAxis.name = "valueAxis";
|
|
254
257
|
var b = this.valueAxis;
|
|
255
|
-
b.propertyChanged = delegateCombine(b.propertyChanged, runOn(this, this.
|
|
258
|
+
b.propertyChanged = delegateCombine(b.propertyChanged, runOn(this, this.ajy));
|
|
256
259
|
if (this.angleAxis.az == null) {
|
|
257
260
|
this.angleAxis.az = new AxisLabelSettings();
|
|
258
261
|
}
|
|
@@ -260,7 +263,7 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
260
263
|
this.valueAxis.az = new AxisLabelSettings();
|
|
261
264
|
}
|
|
262
265
|
};
|
|
263
|
-
DataPieBaseChart.prototype.
|
|
266
|
+
DataPieBaseChart.prototype.ajx = function (a, b) {
|
|
264
267
|
switch (b.propertyName) {
|
|
265
268
|
case "ActualMinimumValue":
|
|
266
269
|
this.v2("AngleAxisActualMinimum");
|
|
@@ -270,7 +273,7 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
270
273
|
break;
|
|
271
274
|
}
|
|
272
275
|
};
|
|
273
|
-
DataPieBaseChart.prototype.
|
|
276
|
+
DataPieBaseChart.prototype.ajy = function (a, b) {
|
|
274
277
|
switch (b.propertyName) {
|
|
275
278
|
case "ActualMinimumValue":
|
|
276
279
|
this.v2("ValueAxisActualMinimum");
|
|
@@ -288,11 +291,11 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
288
291
|
};
|
|
289
292
|
DataPieBaseChart.prototype.aet = function (a) {
|
|
290
293
|
_super.prototype.aet.call(this, a);
|
|
291
|
-
a.lb = this.
|
|
292
|
-
a.le = this.
|
|
293
|
-
a.ny = this.
|
|
294
|
-
if (!isNaN_(this.
|
|
295
|
-
a.nz = this.
|
|
294
|
+
a.lb = this.ahg;
|
|
295
|
+
a.le = this.ahh;
|
|
296
|
+
a.ny = this.ahv;
|
|
297
|
+
if (!isNaN_(this.ahx)) {
|
|
298
|
+
a.nz = this.ahx;
|
|
296
299
|
}
|
|
297
300
|
else {
|
|
298
301
|
a.nz = 0.65;
|
|
@@ -300,14 +303,14 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
300
303
|
};
|
|
301
304
|
DataPieBaseChart.prototype.aer = function (a) {
|
|
302
305
|
_super.prototype.aer.call(this, a);
|
|
303
|
-
a.oa = this.
|
|
304
|
-
a.nu = this.
|
|
305
|
-
a.n7 = this.
|
|
306
|
-
if (!isNaN_(this.
|
|
307
|
-
a.nb = this.
|
|
306
|
+
a.oa = this.aiz;
|
|
307
|
+
a.nu = this.ag0;
|
|
308
|
+
a.n7 = this.ahw;
|
|
309
|
+
if (!isNaN_(this.ahy)) {
|
|
310
|
+
a.nb = this.ahy;
|
|
308
311
|
}
|
|
309
|
-
if (this.
|
|
310
|
-
if (this.
|
|
312
|
+
if (this.ag2 != 0) {
|
|
313
|
+
if (this.ag2 == 1) {
|
|
311
314
|
a.ch = false;
|
|
312
315
|
}
|
|
313
316
|
else {
|
|
@@ -327,42 +330,42 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
327
330
|
});
|
|
328
331
|
break;
|
|
329
332
|
case "SliceLabelContentSeparator":
|
|
330
|
-
this.
|
|
333
|
+
this.ajt(function (d) { return d.z4 = _this.ai8; });
|
|
331
334
|
break;
|
|
332
335
|
case "SliceLabelContentMode":
|
|
333
|
-
this.
|
|
336
|
+
this.ajt(function (d) { return d.y5 = _this.ag8; });
|
|
334
337
|
break;
|
|
335
338
|
case "LegendSliceLabelContentMode":
|
|
336
|
-
this.
|
|
339
|
+
this.ajt(function (d) { return d.y6 = _this.ag7; });
|
|
337
340
|
break;
|
|
338
341
|
case "SliceLabelFormat":
|
|
339
|
-
this.
|
|
342
|
+
this.ajt(function (d) { return d.aas = _this.aja; });
|
|
340
343
|
break;
|
|
341
344
|
case "SliceLabelFormatSpecifiers":
|
|
342
|
-
this.
|
|
345
|
+
this.ajt(function (d) { return d.yj = _this.ago; });
|
|
343
346
|
break;
|
|
344
347
|
case "OthersSliceLabelFormat":
|
|
345
|
-
this.
|
|
348
|
+
this.ajt(function (d) { return d.aap = _this.ai3; });
|
|
346
349
|
break;
|
|
347
350
|
case "OthersSliceLabelFormatSpecifiers":
|
|
348
|
-
this.
|
|
351
|
+
this.ajt(function (d) { return d.yi = _this.agn; });
|
|
349
352
|
break;
|
|
350
353
|
case "LegendSliceLabelFormat":
|
|
351
|
-
this.
|
|
354
|
+
this.ajt(function (d) { return d.aai = _this.aja; });
|
|
352
355
|
break;
|
|
353
356
|
case "LegendSliceLabelFormatSpecifiers":
|
|
354
|
-
this.
|
|
357
|
+
this.ajt(function (d) { return d.yg = _this.ago; });
|
|
355
358
|
break;
|
|
356
359
|
case "LegendOthersSliceLabelFormat":
|
|
357
|
-
this.
|
|
360
|
+
this.ajt(function (d) { return d.aam = _this.aiq; });
|
|
358
361
|
break;
|
|
359
362
|
case "LegendOthersSliceLabelFormatSpecifiers":
|
|
360
|
-
this.
|
|
363
|
+
this.ajt(function (d) { return d.yh = _this.agl; });
|
|
361
364
|
break;
|
|
362
365
|
case "SweepDirection":
|
|
363
366
|
if (this.angleAxis != null) {
|
|
364
|
-
if (this.
|
|
365
|
-
if (this.
|
|
367
|
+
if (this.ag2 != 0) {
|
|
368
|
+
if (this.ag2 == 1) {
|
|
366
369
|
this.angleAxis.ch = false;
|
|
367
370
|
}
|
|
368
371
|
else {
|
|
@@ -376,45 +379,45 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
376
379
|
break;
|
|
377
380
|
case "StartAngle":
|
|
378
381
|
if (this.angleAxis != null) {
|
|
379
|
-
this.angleAxis.nb = isNaN_(this.
|
|
382
|
+
this.angleAxis.nb = isNaN_(this.ahy) ? 0 : this.ahy;
|
|
380
383
|
}
|
|
381
384
|
break;
|
|
382
385
|
case "RadiusExtent":
|
|
383
386
|
if (this.valueAxis != null) {
|
|
384
|
-
this.valueAxis.nz = isNaN_(this.
|
|
387
|
+
this.valueAxis.nz = isNaN_(this.ahx) ? 0.65 : this.ahx;
|
|
385
388
|
}
|
|
386
389
|
break;
|
|
387
390
|
case "OthersCategoryText":
|
|
388
391
|
if (this.angleAxis != null) {
|
|
389
|
-
this.angleAxis.oa = this.
|
|
392
|
+
this.angleAxis.oa = this.aiz;
|
|
390
393
|
}
|
|
391
394
|
break;
|
|
392
395
|
case "OthersCategoryType":
|
|
393
396
|
if (this.angleAxis != null) {
|
|
394
|
-
this.angleAxis.nu = this.
|
|
397
|
+
this.angleAxis.nu = this.ag0;
|
|
395
398
|
}
|
|
396
399
|
break;
|
|
397
400
|
case "OthersCategoryThreshold":
|
|
398
401
|
if (this.angleAxis != null) {
|
|
399
|
-
this.angleAxis.n7 = this.
|
|
402
|
+
this.angleAxis.n7 = this.ahw;
|
|
400
403
|
}
|
|
401
404
|
break;
|
|
402
405
|
case "InnerExtent":
|
|
403
406
|
if (this.valueAxis != null) {
|
|
404
|
-
this.valueAxis.ny = this.
|
|
407
|
+
this.valueAxis.ny = this.ahv;
|
|
405
408
|
}
|
|
406
409
|
break;
|
|
407
410
|
case "LightSliceLabelColor":
|
|
408
411
|
this.ui(function (d) {
|
|
409
412
|
if (d.em) {
|
|
410
|
-
_this.ci.setCalloutLightColor(d, _this.
|
|
413
|
+
_this.ci.setCalloutLightColor(d, _this.aj2);
|
|
411
414
|
}
|
|
412
415
|
});
|
|
413
416
|
break;
|
|
414
417
|
case "DarkSliceLabelColor":
|
|
415
418
|
this.ui(function (d) {
|
|
416
419
|
if (d.em) {
|
|
417
|
-
_this.ci.setCalloutDarkColor(d, _this.
|
|
420
|
+
_this.ci.setCalloutDarkColor(d, _this.aj1);
|
|
418
421
|
}
|
|
419
422
|
});
|
|
420
423
|
break;
|
|
@@ -423,10 +426,10 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
423
426
|
this.um(function (d) {
|
|
424
427
|
if (typeCast(AnchoredRadialSeries.$, d) !== null) {
|
|
425
428
|
var e = d;
|
|
426
|
-
e.acm = _this.
|
|
429
|
+
e.acm = _this.ajq;
|
|
427
430
|
}
|
|
428
431
|
});
|
|
429
|
-
this.angleAxis.og = this.
|
|
432
|
+
this.angleAxis.og = this.ajq;
|
|
430
433
|
}
|
|
431
434
|
else {
|
|
432
435
|
this.vr();
|
|
@@ -434,7 +437,7 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
434
437
|
break;
|
|
435
438
|
case "LabelMemberPath":
|
|
436
439
|
if (c != null) {
|
|
437
|
-
var d = this.
|
|
440
|
+
var d = this.ail;
|
|
438
441
|
this.angleAxis.f1 = d;
|
|
439
442
|
}
|
|
440
443
|
else {
|
|
@@ -442,52 +445,52 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
442
445
|
}
|
|
443
446
|
break;
|
|
444
447
|
case "AngleAxisInterval":
|
|
445
|
-
this.angleAxis.m8 = this.
|
|
448
|
+
this.angleAxis.m8 = this.aht;
|
|
446
449
|
break;
|
|
447
450
|
case "ValueAxisInterval":
|
|
448
|
-
this.valueAxis.l2 = this.
|
|
451
|
+
this.valueAxis.l2 = this.ah1;
|
|
449
452
|
break;
|
|
450
453
|
case "ValueAxisFavorLabellingScaleEnd":
|
|
451
|
-
this.valueAxis.le = this.
|
|
454
|
+
this.valueAxis.le = this.ahh;
|
|
452
455
|
break;
|
|
453
456
|
case "ValueAxisAutoRangeBufferMode":
|
|
454
457
|
this.valueAxis.kv = this.agq;
|
|
455
458
|
break;
|
|
456
459
|
case "AngleAxisMinorInterval":
|
|
457
|
-
this.angleAxis.m9 = this.
|
|
460
|
+
this.angleAxis.m9 = this.ahu;
|
|
458
461
|
break;
|
|
459
462
|
case "ValueAxisMinorInterval":
|
|
460
|
-
this.valueAxis.l7 = this.
|
|
463
|
+
this.valueAxis.l7 = this.ah4;
|
|
461
464
|
break;
|
|
462
465
|
case "ValueAxisIsLogarithmic":
|
|
463
|
-
this.valueAxis.lj = this.
|
|
466
|
+
this.valueAxis.lj = this.ahi;
|
|
464
467
|
break;
|
|
465
468
|
case "ValueAxisLogarithmBase":
|
|
466
|
-
this.valueAxis.ma = this.
|
|
469
|
+
this.valueAxis.ma = this.ah6;
|
|
467
470
|
break;
|
|
468
471
|
case "ValueAxisMinimumValue":
|
|
469
|
-
this.valueAxis.l6 = this.
|
|
472
|
+
this.valueAxis.l6 = this.ah3;
|
|
470
473
|
break;
|
|
471
474
|
case "ValueAxisMaximumValue":
|
|
472
|
-
this.valueAxis.l5 = this.
|
|
475
|
+
this.valueAxis.l5 = this.ah2;
|
|
473
476
|
break;
|
|
474
477
|
case "MarkerCollision":
|
|
475
478
|
this.un(function (e, f) { return _this.t3(e, f); });
|
|
476
479
|
break;
|
|
477
480
|
case "ValueAxisAbbreviateLargeNumbers":
|
|
478
|
-
this.ae0(function (e) { return e.lb = _this.
|
|
481
|
+
this.ae0(function (e) { return e.lb = _this.ahg; });
|
|
479
482
|
break;
|
|
480
483
|
}
|
|
481
484
|
};
|
|
482
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
485
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aja", {
|
|
483
486
|
get: function () {
|
|
484
|
-
return this.
|
|
487
|
+
return this.aie;
|
|
485
488
|
},
|
|
486
489
|
set: function (a) {
|
|
487
|
-
var b = this.
|
|
490
|
+
var b = this.aja;
|
|
488
491
|
if (a != b) {
|
|
489
|
-
this.
|
|
490
|
-
this.vl("SliceLabelFormat", b, this.
|
|
492
|
+
this.aie = a;
|
|
493
|
+
this.vl("SliceLabelFormat", b, this.aja);
|
|
491
494
|
}
|
|
492
495
|
},
|
|
493
496
|
enumerable: false,
|
|
@@ -507,15 +510,15 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
507
510
|
enumerable: false,
|
|
508
511
|
configurable: true
|
|
509
512
|
});
|
|
510
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
513
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aiu", {
|
|
511
514
|
get: function () {
|
|
512
|
-
return this.
|
|
515
|
+
return this.aia;
|
|
513
516
|
},
|
|
514
517
|
set: function (a) {
|
|
515
|
-
var b = this.
|
|
518
|
+
var b = this.aiu;
|
|
516
519
|
if (a != b) {
|
|
517
|
-
this.
|
|
518
|
-
this.vl("LegendSliceLabelFormat", b, this.
|
|
520
|
+
this.aia = a;
|
|
521
|
+
this.vl("LegendSliceLabelFormat", b, this.aiu);
|
|
519
522
|
}
|
|
520
523
|
},
|
|
521
524
|
enumerable: false,
|
|
@@ -535,15 +538,15 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
535
538
|
enumerable: false,
|
|
536
539
|
configurable: true
|
|
537
540
|
});
|
|
538
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
541
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ai3", {
|
|
539
542
|
get: function () {
|
|
540
|
-
return this.
|
|
543
|
+
return this.aic;
|
|
541
544
|
},
|
|
542
545
|
set: function (a) {
|
|
543
|
-
var b = this.
|
|
546
|
+
var b = this.ai3;
|
|
544
547
|
if (a != b) {
|
|
545
|
-
this.
|
|
546
|
-
this.vl("OthersSliceLabelFormat", b, this.
|
|
548
|
+
this.aic = a;
|
|
549
|
+
this.vl("OthersSliceLabelFormat", b, this.ai3);
|
|
547
550
|
}
|
|
548
551
|
},
|
|
549
552
|
enumerable: false,
|
|
@@ -563,15 +566,15 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
563
566
|
enumerable: false,
|
|
564
567
|
configurable: true
|
|
565
568
|
});
|
|
566
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
569
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aiq", {
|
|
567
570
|
get: function () {
|
|
568
|
-
return this.
|
|
571
|
+
return this.ah9;
|
|
569
572
|
},
|
|
570
573
|
set: function (a) {
|
|
571
|
-
var b = this.
|
|
574
|
+
var b = this.aiq;
|
|
572
575
|
if (a != b) {
|
|
573
|
-
this.
|
|
574
|
-
this.vl("LegendOthersSliceLabelFormat", b, this.
|
|
576
|
+
this.ah9 = a;
|
|
577
|
+
this.vl("LegendOthersSliceLabelFormat", b, this.aiq);
|
|
575
578
|
}
|
|
576
579
|
},
|
|
577
580
|
enumerable: false,
|
|
@@ -591,29 +594,29 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
591
594
|
enumerable: false,
|
|
592
595
|
configurable: true
|
|
593
596
|
});
|
|
594
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
597
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahv", {
|
|
595
598
|
get: function () {
|
|
596
|
-
return this.
|
|
599
|
+
return this.ahl;
|
|
597
600
|
},
|
|
598
601
|
set: function (a) {
|
|
599
|
-
var b = this.
|
|
602
|
+
var b = this.ahv;
|
|
600
603
|
if (a != b) {
|
|
601
|
-
this.
|
|
602
|
-
this.vl("InnerExtent", b, this.
|
|
604
|
+
this.ahl = a;
|
|
605
|
+
this.vl("InnerExtent", b, this.ahv);
|
|
603
606
|
}
|
|
604
607
|
},
|
|
605
608
|
enumerable: false,
|
|
606
609
|
configurable: true
|
|
607
610
|
});
|
|
608
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
611
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ag2", {
|
|
609
612
|
get: function () {
|
|
610
|
-
return this.
|
|
613
|
+
return this.ag1;
|
|
611
614
|
},
|
|
612
615
|
set: function (a) {
|
|
613
|
-
var b = this.
|
|
616
|
+
var b = this.ag2;
|
|
614
617
|
if (a != b) {
|
|
615
|
-
this.
|
|
616
|
-
this.vl("SweepDirection", enumGetBox(PieChartSweepDirection_$type, b), enumGetBox(PieChartSweepDirection_$type, this.
|
|
618
|
+
this.ag1 = a;
|
|
619
|
+
this.vl("SweepDirection", enumGetBox(PieChartSweepDirection_$type, b), enumGetBox(PieChartSweepDirection_$type, this.ag2));
|
|
617
620
|
}
|
|
618
621
|
},
|
|
619
622
|
enumerable: false,
|
|
@@ -633,127 +636,141 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
633
636
|
enumerable: false,
|
|
634
637
|
configurable: true
|
|
635
638
|
});
|
|
636
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
639
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aj2", {
|
|
637
640
|
get: function () {
|
|
638
|
-
return this.
|
|
641
|
+
return this.aj0;
|
|
639
642
|
},
|
|
640
643
|
set: function (a) {
|
|
641
|
-
var b = this.
|
|
644
|
+
var b = this.aj2;
|
|
642
645
|
if (a != b) {
|
|
643
|
-
this.
|
|
644
|
-
this.vl("LightSliceLabelColor", b, this.
|
|
646
|
+
this.aj0 = a;
|
|
647
|
+
this.vl("LightSliceLabelColor", b, this.aj2);
|
|
645
648
|
}
|
|
646
649
|
},
|
|
647
650
|
enumerable: false,
|
|
648
651
|
configurable: true
|
|
649
652
|
});
|
|
650
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
653
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aj1", {
|
|
651
654
|
get: function () {
|
|
652
|
-
return this.
|
|
655
|
+
return this.ajz;
|
|
653
656
|
},
|
|
654
657
|
set: function (a) {
|
|
655
|
-
var b = this.
|
|
658
|
+
var b = this.aj1;
|
|
656
659
|
if (a != b) {
|
|
657
|
-
this.
|
|
658
|
-
this.vl("DarkSliceLabelColor", b, this.
|
|
660
|
+
this.ajz = a;
|
|
661
|
+
this.vl("DarkSliceLabelColor", b, this.aj1);
|
|
659
662
|
}
|
|
660
663
|
},
|
|
661
664
|
enumerable: false,
|
|
662
665
|
configurable: true
|
|
663
666
|
});
|
|
664
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
667
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ajq", {
|
|
665
668
|
get: function () {
|
|
666
|
-
return this.
|
|
669
|
+
return this.aif;
|
|
667
670
|
},
|
|
668
671
|
set: function (a) {
|
|
669
|
-
var b = this.
|
|
672
|
+
var b = this.ajq;
|
|
670
673
|
if (a != b) {
|
|
671
|
-
this.
|
|
672
|
-
this.vl("ValueMemberPath", b, this.
|
|
674
|
+
this.aif = a;
|
|
675
|
+
this.vl("ValueMemberPath", b, this.ajq);
|
|
673
676
|
}
|
|
674
677
|
},
|
|
675
678
|
enumerable: false,
|
|
676
679
|
configurable: true
|
|
677
680
|
});
|
|
678
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
681
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aio", {
|
|
679
682
|
get: function () {
|
|
680
|
-
return this.
|
|
683
|
+
return this.ah8;
|
|
681
684
|
},
|
|
682
685
|
set: function (a) {
|
|
683
|
-
var b = this.
|
|
686
|
+
var b = this.ah8;
|
|
684
687
|
if (a != b) {
|
|
685
|
-
this.
|
|
686
|
-
this.vl("LegendLabelMemberPath", b, this.
|
|
688
|
+
this.ah8 = a;
|
|
689
|
+
this.vl("LegendLabelMemberPath", b, this.ah8);
|
|
687
690
|
}
|
|
688
691
|
},
|
|
689
692
|
enumerable: false,
|
|
690
693
|
configurable: true
|
|
691
694
|
});
|
|
692
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
695
|
+
Object.defineProperty(DataPieBaseChart.prototype, "agw", {
|
|
693
696
|
get: function () {
|
|
694
|
-
return this.
|
|
697
|
+
return this.agv;
|
|
695
698
|
},
|
|
696
699
|
set: function (a) {
|
|
697
|
-
var b = this.
|
|
700
|
+
var b = this.agv;
|
|
698
701
|
if (a != b) {
|
|
699
|
-
this.
|
|
700
|
-
this.vl("
|
|
702
|
+
this.agv = a;
|
|
703
|
+
this.vl("LegendEmptyValuesMode", enumGetBox(LegendEmptyValuesMode_$type, b), this.ah8);
|
|
701
704
|
}
|
|
702
705
|
},
|
|
703
706
|
enumerable: false,
|
|
704
707
|
configurable: true
|
|
705
708
|
});
|
|
706
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
709
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ag0", {
|
|
707
710
|
get: function () {
|
|
708
|
-
return this.
|
|
711
|
+
return this.agz;
|
|
709
712
|
},
|
|
710
713
|
set: function (a) {
|
|
711
|
-
var b = this.
|
|
714
|
+
var b = this.ag0;
|
|
712
715
|
if (a != b) {
|
|
713
|
-
this.
|
|
714
|
-
this.vl("
|
|
716
|
+
this.agz = a;
|
|
717
|
+
this.vl("OthersCategoryType", enumGetBox(OthersCategoryType_$type, b), enumGetBox(OthersCategoryType_$type, this.ag0));
|
|
715
718
|
}
|
|
716
719
|
},
|
|
717
720
|
enumerable: false,
|
|
718
721
|
configurable: true
|
|
719
722
|
});
|
|
720
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
723
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahw", {
|
|
721
724
|
get: function () {
|
|
722
|
-
return this.
|
|
725
|
+
return this.ahm;
|
|
723
726
|
},
|
|
724
727
|
set: function (a) {
|
|
725
|
-
var b = this.
|
|
728
|
+
var b = this.ahw;
|
|
726
729
|
if (a != b) {
|
|
727
|
-
this.
|
|
728
|
-
this.vl("
|
|
730
|
+
this.ahm = a;
|
|
731
|
+
this.vl("OthersCategoryThreshold", b, this.ahw);
|
|
729
732
|
}
|
|
730
733
|
},
|
|
731
734
|
enumerable: false,
|
|
732
735
|
configurable: true
|
|
733
736
|
});
|
|
734
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
737
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aiz", {
|
|
735
738
|
get: function () {
|
|
736
|
-
return this.
|
|
739
|
+
return this.aib;
|
|
737
740
|
},
|
|
738
741
|
set: function (a) {
|
|
739
|
-
var b = this.
|
|
742
|
+
var b = this.aiz;
|
|
740
743
|
if (a != b) {
|
|
741
|
-
this.
|
|
742
|
-
this.vl("
|
|
744
|
+
this.aib = a;
|
|
745
|
+
this.vl("OthersCategoryText", b, this.aiz);
|
|
743
746
|
}
|
|
744
747
|
},
|
|
745
748
|
enumerable: false,
|
|
746
749
|
configurable: true
|
|
747
750
|
});
|
|
748
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
751
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ail", {
|
|
749
752
|
get: function () {
|
|
750
|
-
return this.
|
|
753
|
+
return this.ah7;
|
|
751
754
|
},
|
|
752
755
|
set: function (a) {
|
|
753
|
-
var b = this.
|
|
756
|
+
var b = this.ail;
|
|
754
757
|
if (a != b) {
|
|
755
|
-
this.
|
|
756
|
-
this.vl("
|
|
758
|
+
this.ah7 = a;
|
|
759
|
+
this.vl("LabelMemberPath", b, this.ail);
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
enumerable: false,
|
|
763
|
+
configurable: true
|
|
764
|
+
});
|
|
765
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahh", {
|
|
766
|
+
get: function () {
|
|
767
|
+
return this.ahc;
|
|
768
|
+
},
|
|
769
|
+
set: function (a) {
|
|
770
|
+
var b = this.ahh;
|
|
771
|
+
if (a != b) {
|
|
772
|
+
this.ahc = a;
|
|
773
|
+
this.vl("ValueAxisFavorLabellingScaleEnd", b, this.ahh);
|
|
757
774
|
}
|
|
758
775
|
},
|
|
759
776
|
enumerable: false,
|
|
@@ -773,225 +790,225 @@ var DataPieBaseChart = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
773
790
|
enumerable: false,
|
|
774
791
|
configurable: true
|
|
775
792
|
});
|
|
776
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
793
|
+
Object.defineProperty(DataPieBaseChart.prototype, "aht", {
|
|
777
794
|
get: function () {
|
|
778
|
-
return this.
|
|
795
|
+
return this.ahj;
|
|
779
796
|
},
|
|
780
797
|
set: function (a) {
|
|
781
|
-
var b = this.
|
|
798
|
+
var b = this.aht;
|
|
782
799
|
if (a != b) {
|
|
783
|
-
this.
|
|
784
|
-
this.vl("AngleAxisInterval", b, this.
|
|
800
|
+
this.ahj = a;
|
|
801
|
+
this.vl("AngleAxisInterval", b, this.aht);
|
|
785
802
|
}
|
|
786
803
|
},
|
|
787
804
|
enumerable: false,
|
|
788
805
|
configurable: true
|
|
789
806
|
});
|
|
790
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
807
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahu", {
|
|
791
808
|
get: function () {
|
|
792
|
-
return this.
|
|
809
|
+
return this.ahk;
|
|
793
810
|
},
|
|
794
811
|
set: function (a) {
|
|
795
|
-
var b = this.
|
|
812
|
+
var b = this.ahu;
|
|
796
813
|
if (a != b) {
|
|
797
|
-
this.
|
|
798
|
-
this.vl("AngleAxisMinorInterval", b, this.
|
|
814
|
+
this.ahk = a;
|
|
815
|
+
this.vl("AngleAxisMinorInterval", b, this.ahu);
|
|
799
816
|
}
|
|
800
817
|
},
|
|
801
818
|
enumerable: false,
|
|
802
819
|
configurable: true
|
|
803
820
|
});
|
|
804
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
821
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ah1", {
|
|
805
822
|
get: function () {
|
|
806
|
-
return this.
|
|
823
|
+
return this.ahp;
|
|
807
824
|
},
|
|
808
825
|
set: function (a) {
|
|
809
|
-
var b = this.
|
|
826
|
+
var b = this.ah1;
|
|
810
827
|
if (a != b) {
|
|
811
|
-
this.
|
|
812
|
-
this.vl("ValueAxisInterval", b, this.
|
|
828
|
+
this.ahp = a;
|
|
829
|
+
this.vl("ValueAxisInterval", b, this.ah1);
|
|
813
830
|
}
|
|
814
831
|
},
|
|
815
832
|
enumerable: false,
|
|
816
833
|
configurable: true
|
|
817
834
|
});
|
|
818
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
835
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahi", {
|
|
819
836
|
get: function () {
|
|
820
|
-
return this.
|
|
837
|
+
return this.ahd;
|
|
821
838
|
},
|
|
822
839
|
set: function (a) {
|
|
823
|
-
var b = this.
|
|
840
|
+
var b = this.ahi;
|
|
824
841
|
if (a != b) {
|
|
825
|
-
this.
|
|
826
|
-
this.vl("ValueAxisIsLogarithmic", b, this.
|
|
842
|
+
this.ahd = a;
|
|
843
|
+
this.vl("ValueAxisIsLogarithmic", b, this.ahi);
|
|
827
844
|
}
|
|
828
845
|
},
|
|
829
846
|
enumerable: false,
|
|
830
847
|
configurable: true
|
|
831
848
|
});
|
|
832
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
849
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ah6", {
|
|
833
850
|
get: function () {
|
|
834
|
-
return this.
|
|
851
|
+
return this.ah5;
|
|
835
852
|
},
|
|
836
853
|
set: function (a) {
|
|
837
|
-
var b = this.
|
|
854
|
+
var b = this.ah6;
|
|
838
855
|
if (a != b) {
|
|
839
|
-
this.
|
|
840
|
-
this.vl("ValueAxisLogarithmBase", b, this.
|
|
856
|
+
this.ah5 = a;
|
|
857
|
+
this.vl("ValueAxisLogarithmBase", b, this.ah6);
|
|
841
858
|
}
|
|
842
859
|
},
|
|
843
860
|
enumerable: false,
|
|
844
861
|
configurable: true
|
|
845
862
|
});
|
|
846
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
863
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ah3", {
|
|
847
864
|
get: function () {
|
|
848
|
-
return this.
|
|
865
|
+
return this.ahr;
|
|
849
866
|
},
|
|
850
867
|
set: function (a) {
|
|
851
|
-
var b = this.
|
|
868
|
+
var b = this.ah3;
|
|
852
869
|
if (a != b) {
|
|
853
|
-
this.
|
|
854
|
-
this.vl("ValueAxisMinimumValue", b, this.
|
|
870
|
+
this.ahr = a;
|
|
871
|
+
this.vl("ValueAxisMinimumValue", b, this.ah3);
|
|
855
872
|
}
|
|
856
873
|
},
|
|
857
874
|
enumerable: false,
|
|
858
875
|
configurable: true
|
|
859
876
|
});
|
|
860
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
877
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ah2", {
|
|
861
878
|
get: function () {
|
|
862
|
-
return this.
|
|
879
|
+
return this.ahq;
|
|
863
880
|
},
|
|
864
881
|
set: function (a) {
|
|
865
|
-
var b = this.
|
|
882
|
+
var b = this.ah2;
|
|
866
883
|
if (a != b) {
|
|
867
|
-
this.
|
|
868
|
-
this.vl("ValueAxisMaximumValue", b, this.
|
|
884
|
+
this.ahq = a;
|
|
885
|
+
this.vl("ValueAxisMaximumValue", b, this.ah2);
|
|
869
886
|
}
|
|
870
887
|
},
|
|
871
888
|
enumerable: false,
|
|
872
889
|
configurable: true
|
|
873
890
|
});
|
|
874
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
891
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ah4", {
|
|
875
892
|
get: function () {
|
|
876
|
-
return this.
|
|
893
|
+
return this.ahs;
|
|
877
894
|
},
|
|
878
895
|
set: function (a) {
|
|
879
|
-
var b = this.
|
|
896
|
+
var b = this.ah4;
|
|
880
897
|
if (a != b) {
|
|
881
|
-
this.
|
|
882
|
-
this.vl("ValueAxisMinorInterval", b, this.
|
|
898
|
+
this.ahs = a;
|
|
899
|
+
this.vl("ValueAxisMinorInterval", b, this.ah4);
|
|
883
900
|
}
|
|
884
901
|
},
|
|
885
902
|
enumerable: false,
|
|
886
903
|
configurable: true
|
|
887
904
|
});
|
|
888
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
905
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ah0", {
|
|
889
906
|
get: function () {
|
|
890
907
|
return this.valueAxis.ly;
|
|
891
908
|
},
|
|
892
909
|
enumerable: false,
|
|
893
910
|
configurable: true
|
|
894
911
|
});
|
|
895
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
912
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahz", {
|
|
896
913
|
get: function () {
|
|
897
914
|
return this.valueAxis.lx;
|
|
898
915
|
},
|
|
899
916
|
enumerable: false,
|
|
900
917
|
configurable: true
|
|
901
918
|
});
|
|
902
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
919
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahx", {
|
|
903
920
|
get: function () {
|
|
904
|
-
return this.
|
|
921
|
+
return this.ahn;
|
|
905
922
|
},
|
|
906
923
|
set: function (a) {
|
|
907
|
-
var b = this.
|
|
924
|
+
var b = this.ahx;
|
|
908
925
|
if (a != b) {
|
|
909
|
-
this.
|
|
910
|
-
this.vl("RadiusExtent", b, this.
|
|
926
|
+
this.ahn = a;
|
|
927
|
+
this.vl("RadiusExtent", b, this.ahx);
|
|
911
928
|
}
|
|
912
929
|
},
|
|
913
930
|
enumerable: false,
|
|
914
931
|
configurable: true
|
|
915
932
|
});
|
|
916
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
933
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahy", {
|
|
917
934
|
get: function () {
|
|
918
|
-
return this.
|
|
935
|
+
return this.aho;
|
|
919
936
|
},
|
|
920
937
|
set: function (a) {
|
|
921
|
-
var b = this.
|
|
938
|
+
var b = this.ahy;
|
|
922
939
|
if (a != b) {
|
|
923
|
-
this.
|
|
924
|
-
this.vl("StartAngle", b, this.
|
|
940
|
+
this.aho = a;
|
|
941
|
+
this.vl("StartAngle", b, this.ahy);
|
|
925
942
|
}
|
|
926
943
|
},
|
|
927
944
|
enumerable: false,
|
|
928
945
|
configurable: true
|
|
929
946
|
});
|
|
930
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
947
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ai8", {
|
|
931
948
|
get: function () {
|
|
932
|
-
return this.
|
|
949
|
+
return this.aid;
|
|
933
950
|
},
|
|
934
951
|
set: function (a) {
|
|
935
|
-
var b = this.
|
|
952
|
+
var b = this.ai8;
|
|
936
953
|
if (a != b) {
|
|
937
|
-
this.
|
|
938
|
-
this.vl("SliceLabelContentSeparator", b, this.
|
|
954
|
+
this.aid = a;
|
|
955
|
+
this.vl("SliceLabelContentSeparator", b, this.ai8);
|
|
939
956
|
}
|
|
940
957
|
},
|
|
941
958
|
enumerable: false,
|
|
942
959
|
configurable: true
|
|
943
960
|
});
|
|
944
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
961
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ag8", {
|
|
945
962
|
get: function () {
|
|
946
|
-
return this.
|
|
963
|
+
return this.ag6;
|
|
947
964
|
},
|
|
948
965
|
set: function (a) {
|
|
949
|
-
var b = this.
|
|
966
|
+
var b = this.ag8;
|
|
950
967
|
if (a != b) {
|
|
951
|
-
this.
|
|
952
|
-
this.vl("SliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.
|
|
968
|
+
this.ag6 = a;
|
|
969
|
+
this.vl("SliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.ag8));
|
|
953
970
|
}
|
|
954
971
|
},
|
|
955
972
|
enumerable: false,
|
|
956
973
|
configurable: true
|
|
957
974
|
});
|
|
958
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
975
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ag7", {
|
|
959
976
|
get: function () {
|
|
960
|
-
return this.
|
|
977
|
+
return this.ag5;
|
|
961
978
|
},
|
|
962
979
|
set: function (a) {
|
|
963
|
-
var b = this.
|
|
980
|
+
var b = this.ag7;
|
|
964
981
|
if (a != b) {
|
|
965
|
-
this.
|
|
966
|
-
this.vl("LegendSliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.
|
|
982
|
+
this.ag5 = a;
|
|
983
|
+
this.vl("LegendSliceLabelContentMode", enumGetBox(RadialLabelMode_$type, b), enumGetBox(RadialLabelMode_$type, this.ag7));
|
|
967
984
|
}
|
|
968
985
|
},
|
|
969
986
|
enumerable: false,
|
|
970
987
|
configurable: true
|
|
971
988
|
});
|
|
972
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
989
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahe", {
|
|
973
990
|
get: function () {
|
|
974
|
-
return this.
|
|
991
|
+
return this.aha;
|
|
975
992
|
},
|
|
976
993
|
set: function (a) {
|
|
977
|
-
var b = this.
|
|
994
|
+
var b = this.ahe;
|
|
978
995
|
if (a != b) {
|
|
979
|
-
this.
|
|
980
|
-
this.vl("AngleAxisFavorLabellingScaleEnd", b, this.
|
|
996
|
+
this.aha = a;
|
|
997
|
+
this.vl("AngleAxisFavorLabellingScaleEnd", b, this.ahe);
|
|
981
998
|
}
|
|
982
999
|
},
|
|
983
1000
|
enumerable: false,
|
|
984
1001
|
configurable: true
|
|
985
1002
|
});
|
|
986
|
-
Object.defineProperty(DataPieBaseChart.prototype, "
|
|
1003
|
+
Object.defineProperty(DataPieBaseChart.prototype, "ahg", {
|
|
987
1004
|
get: function () {
|
|
988
|
-
return this.
|
|
1005
|
+
return this.ahb;
|
|
989
1006
|
},
|
|
990
1007
|
set: function (a) {
|
|
991
|
-
var b = this.
|
|
1008
|
+
var b = this.ahg;
|
|
992
1009
|
if (a != b) {
|
|
993
|
-
this.
|
|
994
|
-
this.vl("ValueAxisAbbreviateLargeNumbers", b, this.
|
|
1010
|
+
this.ahb = a;
|
|
1011
|
+
this.vl("ValueAxisAbbreviateLargeNumbers", b, this.ahg);
|
|
995
1012
|
}
|
|
996
1013
|
},
|
|
997
1014
|
enumerable: false,
|