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
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PieChartSweepDirection_$type } from "./PieChartSweepDirection";
|
|
2
2
|
import { CalloutCollisionMode_$type } from "igniteui-webcomponents-core";
|
|
3
|
+
import { LegendEmptyValuesMode_$type } from "igniteui-webcomponents-core";
|
|
3
4
|
import { OthersCategoryType_$type } from "igniteui-webcomponents-core";
|
|
4
5
|
import { AxisRangeBufferMode_$type } from "./AxisRangeBufferMode";
|
|
5
6
|
import { RadialLabelMode_$type } from "igniteui-webcomponents-core";
|
|
@@ -57,10 +58,10 @@ export let IgcDataPieBaseChartComponent = /*@__PURE__*/ (() => {
|
|
|
57
58
|
* Gets or sets the label format for the slices.
|
|
58
59
|
*/
|
|
59
60
|
get sliceLabelFormat() {
|
|
60
|
-
return this.i.
|
|
61
|
+
return this.i.aja;
|
|
61
62
|
}
|
|
62
63
|
set sliceLabelFormat(v) {
|
|
63
|
-
this.i.
|
|
64
|
+
this.i.aja = v;
|
|
64
65
|
}
|
|
65
66
|
/**
|
|
66
67
|
* Gets or sets the format specifiers to use with the labels for the slices.
|
|
@@ -79,10 +80,10 @@ export let IgcDataPieBaseChartComponent = /*@__PURE__*/ (() => {
|
|
|
79
80
|
* Gets or sets the label format for the LegendSlices.
|
|
80
81
|
*/
|
|
81
82
|
get legendSliceLabelFormat() {
|
|
82
|
-
return this.i.
|
|
83
|
+
return this.i.aiu;
|
|
83
84
|
}
|
|
84
85
|
set legendSliceLabelFormat(v) {
|
|
85
|
-
this.i.
|
|
86
|
+
this.i.aiu = v;
|
|
86
87
|
}
|
|
87
88
|
/**
|
|
88
89
|
* Gets or sets the format specifiers to use with the labels for the LegendSlices.
|
|
@@ -101,10 +102,10 @@ export let IgcDataPieBaseChartComponent = /*@__PURE__*/ (() => {
|
|
|
101
102
|
* Gets or sets the label format for the OthersSlices.
|
|
102
103
|
*/
|
|
103
104
|
get othersSliceLabelFormat() {
|
|
104
|
-
return this.i.
|
|
105
|
+
return this.i.ai3;
|
|
105
106
|
}
|
|
106
107
|
set othersSliceLabelFormat(v) {
|
|
107
|
-
this.i.
|
|
108
|
+
this.i.ai3 = v;
|
|
108
109
|
}
|
|
109
110
|
/**
|
|
110
111
|
* Gets or sets the format specifiers to use with the labels for the OthersSlices.
|
|
@@ -123,10 +124,10 @@ export let IgcDataPieBaseChartComponent = /*@__PURE__*/ (() => {
|
|
|
123
124
|
* Gets or sets the label format for the LegendOthersSlices.
|
|
124
125
|
*/
|
|
125
126
|
get legendOthersSliceLabelFormat() {
|
|
126
|
-
return this.i.
|
|
127
|
+
return this.i.aiq;
|
|
127
128
|
}
|
|
128
129
|
set legendOthersSliceLabelFormat(v) {
|
|
129
|
-
this.i.
|
|
130
|
+
this.i.aiq = v;
|
|
130
131
|
}
|
|
131
132
|
/**
|
|
132
133
|
* Gets or sets the format specifiers to use with the labels for the LegendOthersSlices.
|
|
@@ -146,22 +147,22 @@ export let IgcDataPieBaseChartComponent = /*@__PURE__*/ (() => {
|
|
|
146
147
|
* a value between 0.0 and 1.0.
|
|
147
148
|
*/
|
|
148
149
|
get innerExtent() {
|
|
149
|
-
return this.i.
|
|
150
|
+
return this.i.ahv;
|
|
150
151
|
}
|
|
151
152
|
set innerExtent(v) {
|
|
152
|
-
this.i.
|
|
153
|
-
this._a("innerExtent", this.i.
|
|
153
|
+
this.i.ahv = +v;
|
|
154
|
+
this._a("innerExtent", this.i.ahv);
|
|
154
155
|
}
|
|
155
156
|
/**
|
|
156
157
|
* Defines the percentage of the maximum radius extent to leave blank at the center of the chart. Should be
|
|
157
158
|
* a value between 0.0 and 1.0.
|
|
158
159
|
*/
|
|
159
160
|
get sweepDirection() {
|
|
160
|
-
return this.i.
|
|
161
|
+
return this.i.ag2;
|
|
161
162
|
}
|
|
162
163
|
set sweepDirection(v) {
|
|
163
|
-
this.i.
|
|
164
|
-
this._a("sweepDirection", enumToString(PieChartSweepDirection_$type, this.i.
|
|
164
|
+
this.i.ag2 = ensureEnum(PieChartSweepDirection_$type, v);
|
|
165
|
+
this._a("sweepDirection", enumToString(PieChartSweepDirection_$type, this.i.ag2));
|
|
165
166
|
}
|
|
166
167
|
/**
|
|
167
168
|
* Defines the positioning mode of the slice labels for the pie chart.
|
|
@@ -177,87 +178,94 @@ export let IgcDataPieBaseChartComponent = /*@__PURE__*/ (() => {
|
|
|
177
178
|
* Gets or sets the light color to use for slice labels.
|
|
178
179
|
*/
|
|
179
180
|
get lightSliceLabelColor() {
|
|
180
|
-
return brushToString(this.i.
|
|
181
|
+
return brushToString(this.i.aj2);
|
|
181
182
|
}
|
|
182
183
|
set lightSliceLabelColor(v) {
|
|
183
|
-
this.i.
|
|
184
|
-
this._a("lightSliceLabelColor", brushToString(this.i.
|
|
184
|
+
this.i.aj2 = stringToBrush(v);
|
|
185
|
+
this._a("lightSliceLabelColor", brushToString(this.i.aj2));
|
|
185
186
|
}
|
|
186
187
|
/**
|
|
187
188
|
* Gets or sets the Dark color to use for slice labels.
|
|
188
189
|
*/
|
|
189
190
|
get darkSliceLabelColor() {
|
|
190
|
-
return brushToString(this.i.
|
|
191
|
+
return brushToString(this.i.aj1);
|
|
191
192
|
}
|
|
192
193
|
set darkSliceLabelColor(v) {
|
|
193
|
-
this.i.
|
|
194
|
-
this._a("darkSliceLabelColor", brushToString(this.i.
|
|
194
|
+
this.i.aj1 = stringToBrush(v);
|
|
195
|
+
this._a("darkSliceLabelColor", brushToString(this.i.aj1));
|
|
195
196
|
}
|
|
196
197
|
/**
|
|
197
198
|
* Gets or sets the overridden value member path to use.
|
|
198
199
|
*/
|
|
199
200
|
get valueMemberPath() {
|
|
200
|
-
return this.i.
|
|
201
|
+
return this.i.ajq;
|
|
201
202
|
}
|
|
202
203
|
set valueMemberPath(v) {
|
|
203
|
-
this.i.
|
|
204
|
+
this.i.ajq = v;
|
|
204
205
|
}
|
|
205
206
|
/**
|
|
206
207
|
* Gets or sets the legend label member path to use.
|
|
207
208
|
*/
|
|
208
209
|
get legendLabelMemberPath() {
|
|
209
|
-
return this.i.
|
|
210
|
+
return this.i.aio;
|
|
210
211
|
}
|
|
211
212
|
set legendLabelMemberPath(v) {
|
|
212
|
-
this.i.
|
|
213
|
+
this.i.aio = v;
|
|
214
|
+
}
|
|
215
|
+
get legendEmptyValuesMode() {
|
|
216
|
+
return this.i.agw;
|
|
217
|
+
}
|
|
218
|
+
set legendEmptyValuesMode(v) {
|
|
219
|
+
this.i.agw = ensureEnum(LegendEmptyValuesMode_$type, v);
|
|
220
|
+
this._a("legendEmptyValuesMode", enumToString(LegendEmptyValuesMode_$type, this.i.agw));
|
|
213
221
|
}
|
|
214
222
|
/**
|
|
215
223
|
* Gets or sets whether to use numeric or percent-based threshold value.
|
|
216
224
|
*/
|
|
217
225
|
get othersCategoryType() {
|
|
218
|
-
return this.i.
|
|
226
|
+
return this.i.ag0;
|
|
219
227
|
}
|
|
220
228
|
set othersCategoryType(v) {
|
|
221
|
-
this.i.
|
|
222
|
-
this._a("othersCategoryType", enumToString(OthersCategoryType_$type, this.i.
|
|
229
|
+
this.i.ag0 = ensureEnum(OthersCategoryType_$type, v);
|
|
230
|
+
this._a("othersCategoryType", enumToString(OthersCategoryType_$type, this.i.ag0));
|
|
223
231
|
}
|
|
224
232
|
/**
|
|
225
233
|
* Gets or sets the threshold value that determines if slices are grouped into the Others slice.
|
|
226
234
|
*/
|
|
227
235
|
get othersCategoryThreshold() {
|
|
228
|
-
return this.i.
|
|
236
|
+
return this.i.ahw;
|
|
229
237
|
}
|
|
230
238
|
set othersCategoryThreshold(v) {
|
|
231
|
-
this.i.
|
|
232
|
-
this._a("othersCategoryThreshold", this.i.
|
|
239
|
+
this.i.ahw = +v;
|
|
240
|
+
this._a("othersCategoryThreshold", this.i.ahw);
|
|
233
241
|
}
|
|
234
242
|
/**
|
|
235
243
|
* Gets or sets the label of the Others slice.
|
|
236
244
|
*/
|
|
237
245
|
get othersCategoryText() {
|
|
238
|
-
return this.i.
|
|
246
|
+
return this.i.aiz;
|
|
239
247
|
}
|
|
240
248
|
set othersCategoryText(v) {
|
|
241
|
-
this.i.
|
|
249
|
+
this.i.aiz = v;
|
|
242
250
|
}
|
|
243
251
|
/**
|
|
244
252
|
* Gets or sets the overridden value member path to use.
|
|
245
253
|
*/
|
|
246
254
|
get labelMemberPath() {
|
|
247
|
-
return this.i.
|
|
255
|
+
return this.i.ail;
|
|
248
256
|
}
|
|
249
257
|
set labelMemberPath(v) {
|
|
250
|
-
this.i.
|
|
258
|
+
this.i.ail = v;
|
|
251
259
|
}
|
|
252
260
|
/**
|
|
253
261
|
* Gets or sets whether the axis should favor emitting a label at the end of the scale.
|
|
254
262
|
*/
|
|
255
263
|
get valueAxisFavorLabellingScaleEnd() {
|
|
256
|
-
return this.i.
|
|
264
|
+
return this.i.ahh;
|
|
257
265
|
}
|
|
258
266
|
set valueAxisFavorLabellingScaleEnd(v) {
|
|
259
|
-
this.i.
|
|
260
|
-
this._a("valueAxisFavorLabellingScaleEnd", this.i.
|
|
267
|
+
this.i.ahh = ensureBool(v);
|
|
268
|
+
this._a("valueAxisFavorLabellingScaleEnd", this.i.ahh);
|
|
261
269
|
}
|
|
262
270
|
/**
|
|
263
271
|
* Gets or sets how the numeric axis will adjust its range buffer to less closely fix the data from the series.
|
|
@@ -274,165 +282,165 @@ export let IgcDataPieBaseChartComponent = /*@__PURE__*/ (() => {
|
|
|
274
282
|
* Gets or sets the set value is a factor that determines which labels will be hidden. For example, an interval of 2 will display every other label.
|
|
275
283
|
*/
|
|
276
284
|
get angleAxisInterval() {
|
|
277
|
-
return this.i.
|
|
285
|
+
return this.i.aht;
|
|
278
286
|
}
|
|
279
287
|
set angleAxisInterval(v) {
|
|
280
|
-
this.i.
|
|
281
|
-
this._a("angleAxisInterval", this.i.
|
|
288
|
+
this.i.aht = +v;
|
|
289
|
+
this._a("angleAxisInterval", this.i.aht);
|
|
282
290
|
}
|
|
283
291
|
/**
|
|
284
292
|
* Gets or sets the frequency of displayed minor lines along the X-axis.
|
|
285
293
|
* Gets or sets the set value is a factor that determines how the minor lines will be displayed.
|
|
286
294
|
*/
|
|
287
295
|
get angleAxisMinorInterval() {
|
|
288
|
-
return this.i.
|
|
296
|
+
return this.i.ahu;
|
|
289
297
|
}
|
|
290
298
|
set angleAxisMinorInterval(v) {
|
|
291
|
-
this.i.
|
|
292
|
-
this._a("angleAxisMinorInterval", this.i.
|
|
299
|
+
this.i.ahu = +v;
|
|
300
|
+
this._a("angleAxisMinorInterval", this.i.ahu);
|
|
293
301
|
}
|
|
294
302
|
/**
|
|
295
303
|
* Gets or sets the distance between each label and grid line along the Y-axis.
|
|
296
304
|
*/
|
|
297
305
|
get valueAxisInterval() {
|
|
298
|
-
return this.i.
|
|
306
|
+
return this.i.ah1;
|
|
299
307
|
}
|
|
300
308
|
set valueAxisInterval(v) {
|
|
301
|
-
this.i.
|
|
302
|
-
this._a("valueAxisInterval", this.i.
|
|
309
|
+
this.i.ah1 = +v;
|
|
310
|
+
this._a("valueAxisInterval", this.i.ah1);
|
|
303
311
|
}
|
|
304
312
|
/**
|
|
305
313
|
* Gets or sets whether the Y-axis should use a logarithmic scale instead of a linear one.
|
|
306
314
|
* Since log(-1) is imaginary and log(0) is undefined, it is recommended to enable this property only when the Y-axis minimum is greater than zero.
|
|
307
315
|
*/
|
|
308
316
|
get valueAxisIsLogarithmic() {
|
|
309
|
-
return this.i.
|
|
317
|
+
return this.i.ahi;
|
|
310
318
|
}
|
|
311
319
|
set valueAxisIsLogarithmic(v) {
|
|
312
|
-
this.i.
|
|
313
|
-
this._a("valueAxisIsLogarithmic", this.i.
|
|
320
|
+
this.i.ahi = ensureBool(v);
|
|
321
|
+
this._a("valueAxisIsLogarithmic", this.i.ahi);
|
|
314
322
|
}
|
|
315
323
|
/**
|
|
316
324
|
* Gets or sets the base value to use in the log function when mapping the position of data items along the Y-axis.
|
|
317
325
|
* This property is effective only when ValueAxisIsLogarithmic is true.
|
|
318
326
|
*/
|
|
319
327
|
get valueAxisLogarithmBase() {
|
|
320
|
-
return this.i.
|
|
328
|
+
return this.i.ah6;
|
|
321
329
|
}
|
|
322
330
|
set valueAxisLogarithmBase(v) {
|
|
323
|
-
this.i.
|
|
324
|
-
this._a("valueAxisLogarithmBase", this.i.
|
|
331
|
+
this.i.ah6 = +v;
|
|
332
|
+
this._a("valueAxisLogarithmBase", this.i.ah6);
|
|
325
333
|
}
|
|
326
334
|
/**
|
|
327
335
|
* Gets or sets the data value corresponding to the minimum value of the Y-axis.
|
|
328
336
|
*/
|
|
329
337
|
get valueAxisMinimumValue() {
|
|
330
|
-
return this.i.
|
|
338
|
+
return this.i.ah3;
|
|
331
339
|
}
|
|
332
340
|
set valueAxisMinimumValue(v) {
|
|
333
|
-
this.i.
|
|
334
|
-
this._a("valueAxisMinimumValue", this.i.
|
|
341
|
+
this.i.ah3 = +v;
|
|
342
|
+
this._a("valueAxisMinimumValue", this.i.ah3);
|
|
335
343
|
}
|
|
336
344
|
/**
|
|
337
345
|
* Gets or sets the data value corresponding to the maximum value of the Y-axis.
|
|
338
346
|
*/
|
|
339
347
|
get valueAxisMaximumValue() {
|
|
340
|
-
return this.i.
|
|
348
|
+
return this.i.ah2;
|
|
341
349
|
}
|
|
342
350
|
set valueAxisMaximumValue(v) {
|
|
343
|
-
this.i.
|
|
344
|
-
this._a("valueAxisMaximumValue", this.i.
|
|
351
|
+
this.i.ah2 = +v;
|
|
352
|
+
this._a("valueAxisMaximumValue", this.i.ah2);
|
|
345
353
|
}
|
|
346
354
|
/**
|
|
347
355
|
* Gets or sets the frequency of displayed minor lines along the Y-axis.
|
|
348
356
|
*/
|
|
349
357
|
get valueAxisMinorInterval() {
|
|
350
|
-
return this.i.
|
|
358
|
+
return this.i.ah4;
|
|
351
359
|
}
|
|
352
360
|
set valueAxisMinorInterval(v) {
|
|
353
|
-
this.i.
|
|
354
|
-
this._a("valueAxisMinorInterval", this.i.
|
|
361
|
+
this.i.ah4 = +v;
|
|
362
|
+
this._a("valueAxisMinorInterval", this.i.ah4);
|
|
355
363
|
}
|
|
356
364
|
/**
|
|
357
365
|
* Gets the current minimum value for the Y-axis.
|
|
358
366
|
*/
|
|
359
367
|
get valueAxisActualMinimum() {
|
|
360
|
-
return this.i.
|
|
368
|
+
return this.i.ah0;
|
|
361
369
|
}
|
|
362
370
|
/**
|
|
363
371
|
* Gets the current maximum value for the Y-axis.
|
|
364
372
|
*/
|
|
365
373
|
get valueAxisActualMaximum() {
|
|
366
|
-
return this.i.
|
|
374
|
+
return this.i.ahz;
|
|
367
375
|
}
|
|
368
376
|
/**
|
|
369
377
|
* Gets or sets the extent of the chart's radius. Value between 0 and 1.
|
|
370
378
|
*/
|
|
371
379
|
get radiusExtent() {
|
|
372
|
-
return this.i.
|
|
380
|
+
return this.i.ahx;
|
|
373
381
|
}
|
|
374
382
|
set radiusExtent(v) {
|
|
375
|
-
this.i.
|
|
376
|
-
this._a("radiusExtent", this.i.
|
|
383
|
+
this.i.ahx = +v;
|
|
384
|
+
this._a("radiusExtent", this.i.ahx);
|
|
377
385
|
}
|
|
378
386
|
/**
|
|
379
387
|
* Gets or sets the start angle to use for the pie chart measured in degrees from the positive x axis.
|
|
380
388
|
*/
|
|
381
389
|
get startAngle() {
|
|
382
|
-
return this.i.
|
|
390
|
+
return this.i.ahy;
|
|
383
391
|
}
|
|
384
392
|
set startAngle(v) {
|
|
385
|
-
this.i.
|
|
386
|
-
this._a("startAngle", this.i.
|
|
393
|
+
this.i.ahy = +v;
|
|
394
|
+
this._a("startAngle", this.i.ahy);
|
|
387
395
|
}
|
|
388
396
|
/**
|
|
389
397
|
* Gets or sets the label of the Others slice.
|
|
390
398
|
*/
|
|
391
399
|
get sliceLabelContentSeparator() {
|
|
392
|
-
return this.i.
|
|
400
|
+
return this.i.ai8;
|
|
393
401
|
}
|
|
394
402
|
set sliceLabelContentSeparator(v) {
|
|
395
|
-
this.i.
|
|
403
|
+
this.i.ai8 = v;
|
|
396
404
|
}
|
|
397
405
|
/**
|
|
398
406
|
* Gets or sets the label of the Others slice.
|
|
399
407
|
*/
|
|
400
408
|
get sliceLabelContentMode() {
|
|
401
|
-
return this.i.
|
|
409
|
+
return this.i.ag8;
|
|
402
410
|
}
|
|
403
411
|
set sliceLabelContentMode(v) {
|
|
404
|
-
this.i.
|
|
405
|
-
this._a("sliceLabelContentMode", enumToString(RadialLabelMode_$type, this.i.
|
|
412
|
+
this.i.ag8 = ensureEnum(RadialLabelMode_$type, v);
|
|
413
|
+
this._a("sliceLabelContentMode", enumToString(RadialLabelMode_$type, this.i.ag8));
|
|
406
414
|
}
|
|
407
415
|
/**
|
|
408
416
|
* Gets or sets the label of the Others slice.
|
|
409
417
|
*/
|
|
410
418
|
get legendSliceLabelContentMode() {
|
|
411
|
-
return this.i.
|
|
419
|
+
return this.i.ag7;
|
|
412
420
|
}
|
|
413
421
|
set legendSliceLabelContentMode(v) {
|
|
414
|
-
this.i.
|
|
415
|
-
this._a("legendSliceLabelContentMode", enumToString(RadialLabelMode_$type, this.i.
|
|
422
|
+
this.i.ag7 = ensureEnum(RadialLabelMode_$type, v);
|
|
423
|
+
this._a("legendSliceLabelContentMode", enumToString(RadialLabelMode_$type, this.i.ag7));
|
|
416
424
|
}
|
|
417
425
|
/**
|
|
418
426
|
* Gets or sets whether to favor labelling the end of the scale.
|
|
419
427
|
*/
|
|
420
428
|
get angleAxisFavorLabellingScaleEnd() {
|
|
421
|
-
return this.i.
|
|
429
|
+
return this.i.ahe;
|
|
422
430
|
}
|
|
423
431
|
set angleAxisFavorLabellingScaleEnd(v) {
|
|
424
|
-
this.i.
|
|
425
|
-
this._a("angleAxisFavorLabellingScaleEnd", this.i.
|
|
432
|
+
this.i.ahe = ensureBool(v);
|
|
433
|
+
this._a("angleAxisFavorLabellingScaleEnd", this.i.ahe);
|
|
426
434
|
}
|
|
427
435
|
/**
|
|
428
436
|
* Gets or sets whether the large numbers on the Y-axis labels are abbreviated.
|
|
429
437
|
*/
|
|
430
438
|
get valueAxisAbbreviateLargeNumbers() {
|
|
431
|
-
return this.i.
|
|
439
|
+
return this.i.ahg;
|
|
432
440
|
}
|
|
433
441
|
set valueAxisAbbreviateLargeNumbers(v) {
|
|
434
|
-
this.i.
|
|
435
|
-
this._a("valueAxisAbbreviateLargeNumbers", this.i.
|
|
442
|
+
this.i.ahg = ensureBool(v);
|
|
443
|
+
this._a("valueAxisAbbreviateLargeNumbers", this.i.ahg);
|
|
436
444
|
}
|
|
437
445
|
/**
|
|
438
446
|
* Gets or sets collision avoidance between markers on series that support this behaviour.
|
|
@@ -269,41 +269,41 @@ export let IgcDataPieChartComponent = /*@__PURE__*/ (() => {
|
|
|
269
269
|
* Gets or sets the duration used for animating series plots when the chart is loading into view
|
|
270
270
|
*/
|
|
271
271
|
get transitionInDuration() {
|
|
272
|
-
return this.i.
|
|
272
|
+
return this.i.akh;
|
|
273
273
|
}
|
|
274
274
|
set transitionInDuration(v) {
|
|
275
|
-
this.i.
|
|
276
|
-
this._a("transitionInDuration", this.i.
|
|
275
|
+
this.i.akh = +v;
|
|
276
|
+
this._a("transitionInDuration", this.i.akh);
|
|
277
277
|
}
|
|
278
278
|
/**
|
|
279
279
|
* Gets or sets the duration used for animating series plots when the series is leaving view
|
|
280
280
|
*/
|
|
281
281
|
get transitionOutDuration() {
|
|
282
|
-
return this.i.
|
|
282
|
+
return this.i.aki;
|
|
283
283
|
}
|
|
284
284
|
set transitionOutDuration(v) {
|
|
285
|
-
this.i.
|
|
286
|
-
this._a("transitionOutDuration", this.i.
|
|
285
|
+
this.i.aki = +v;
|
|
286
|
+
this._a("transitionOutDuration", this.i.aki);
|
|
287
287
|
}
|
|
288
288
|
/**
|
|
289
289
|
* Gets or sets the easing function used for animating series plots when the chart is loading into view
|
|
290
290
|
* This can be set to one of the known values "linear" or "cubic," or it can be set to an easing function which takes a single numeric parameter and returns a number.
|
|
291
291
|
*/
|
|
292
292
|
get transitionInEasingFunction() {
|
|
293
|
-
return this.i.
|
|
293
|
+
return this.i.akb;
|
|
294
294
|
}
|
|
295
295
|
set transitionInEasingFunction(v) {
|
|
296
|
-
this.i.
|
|
296
|
+
this.i.akb = v;
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
299
|
* Gets or sets the easing function used for animating series plots when the chart is loading into view
|
|
300
300
|
* This can be set to one of the known values "linear" or "cubic," or it can be set to an easing function which takes a single numeric parameter and returns a number.
|
|
301
301
|
*/
|
|
302
302
|
get transitionOutEasingFunction() {
|
|
303
|
-
return this.i.
|
|
303
|
+
return this.i.akc;
|
|
304
304
|
}
|
|
305
305
|
set transitionOutEasingFunction(v) {
|
|
306
|
-
this.i.
|
|
306
|
+
this.i.akc = v;
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
309
|
* Gets the domain type of this chart
|
|
@@ -315,48 +315,48 @@ export let IgcDataPieChartComponent = /*@__PURE__*/ (() => {
|
|
|
315
315
|
* Gets or sets the type of chart series to generate from the data.
|
|
316
316
|
*/
|
|
317
317
|
get chartType() {
|
|
318
|
-
return this.i.
|
|
318
|
+
return this.i.aj6;
|
|
319
319
|
}
|
|
320
320
|
set chartType(v) {
|
|
321
|
-
this.i.
|
|
322
|
-
this._a("chartType", enumToString(DataPieChartType_$type, this.i.
|
|
321
|
+
this.i.aj6 = ensureEnum(DataPieChartType_$type, v);
|
|
322
|
+
this._a("chartType", enumToString(DataPieChartType_$type, this.i.aj6));
|
|
323
323
|
}
|
|
324
324
|
/**
|
|
325
325
|
* Gets or sets whether animation of series plots is enabled when the chart is loading into view
|
|
326
326
|
*/
|
|
327
327
|
get isTransitionInEnabled() {
|
|
328
|
-
return this.i.
|
|
328
|
+
return this.i.ake;
|
|
329
329
|
}
|
|
330
330
|
set isTransitionInEnabled(v) {
|
|
331
|
-
this.i.
|
|
332
|
-
this._a("isTransitionInEnabled", this.i.
|
|
331
|
+
this.i.ake = ensureBool(v);
|
|
332
|
+
this._a("isTransitionInEnabled", this.i.ake);
|
|
333
333
|
}
|
|
334
334
|
/**
|
|
335
335
|
* Gets or sets the method that determines how to animate series plots when the chart is loading into view
|
|
336
336
|
*/
|
|
337
337
|
get transitionInMode() {
|
|
338
|
-
return this.i.
|
|
338
|
+
return this.i.aj4;
|
|
339
339
|
}
|
|
340
340
|
set transitionInMode(v) {
|
|
341
|
-
this.i.
|
|
342
|
-
this._a("transitionInMode", enumToString(CategoryTransitionInMode_$type, this.i.
|
|
341
|
+
this.i.aj4 = ensureEnum(CategoryTransitionInMode_$type, v);
|
|
342
|
+
this._a("transitionInMode", enumToString(CategoryTransitionInMode_$type, this.i.aj4));
|
|
343
343
|
}
|
|
344
344
|
/**
|
|
345
345
|
* Gets or sets the arrival speed used for animating series plots when the chart is loading into view
|
|
346
346
|
*/
|
|
347
347
|
get transitionInSpeedType() {
|
|
348
|
-
return this.i.
|
|
348
|
+
return this.i.aj8;
|
|
349
349
|
}
|
|
350
350
|
set transitionInSpeedType(v) {
|
|
351
|
-
this.i.
|
|
352
|
-
this._a("transitionInSpeedType", enumToString(TransitionInSpeedType_$type, this.i.
|
|
351
|
+
this.i.aj8 = ensureEnum(TransitionInSpeedType_$type, v);
|
|
352
|
+
this._a("transitionInSpeedType", enumToString(TransitionInSpeedType_$type, this.i.aj8));
|
|
353
353
|
}
|
|
354
354
|
/**
|
|
355
355
|
* Export serialized visual data.
|
|
356
356
|
|
|
357
357
|
*/
|
|
358
358
|
exportSerializedVisualData() {
|
|
359
|
-
let iv = this.i.
|
|
359
|
+
let iv = this.i.akk();
|
|
360
360
|
return (iv);
|
|
361
361
|
}
|
|
362
362
|
}
|
|
@@ -6,7 +6,7 @@ import { LeaderLineType_$type } from "./LeaderLineType";
|
|
|
6
6
|
import { OthersCategoryType_$type } from "igniteui-webcomponents-core";
|
|
7
7
|
import { IgcIndexCollection } from "./igc-index-collection";
|
|
8
8
|
import { SweepDirection_$type } from "igniteui-webcomponents-core";
|
|
9
|
-
import { LegendEmptyValuesMode_$type } from "
|
|
9
|
+
import { LegendEmptyValuesMode_$type } from "igniteui-webcomponents-core";
|
|
10
10
|
import { SliceSelectionMode_$type } from "./SliceSelectionMode";
|
|
11
11
|
import { IgcObjectCollection } from "igniteui-webcomponents-core";
|
|
12
12
|
import { IgcLabelClickEventArgs } from "./igc-label-click-event-args";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { LegendEmptyValuesMode_$type } from "igniteui-webcomponents-core";
|
|
1
2
|
import { IgcAnchoredRadialSeriesComponent } from "./igc-anchored-radial-series-component";
|
|
2
3
|
import { RadialPieSeries } from "./RadialPieSeries";
|
|
3
|
-
import { getAllPropertyNames, toSpinal, toPoint, fromRect } from "igniteui-webcomponents-core";
|
|
4
|
+
import { getAllPropertyNames, toSpinal, ensureEnum, enumToString, toPoint, fromRect } from "igniteui-webcomponents-core";
|
|
4
5
|
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
6
|
/**
|
|
6
7
|
* Represents a IgxDataChartComponent radial pie series.
|
|
@@ -75,30 +76,40 @@ export let IgcRadialPieSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
75
76
|
* Gets or sets the x-radius of the ellipse that is used to round the corners of the column.
|
|
76
77
|
*/
|
|
77
78
|
get radiusX() {
|
|
78
|
-
return this.i.
|
|
79
|
+
return this.i.adj;
|
|
79
80
|
}
|
|
80
81
|
set radiusX(v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("radiusX", this.i.
|
|
82
|
+
this.i.adj = +v;
|
|
83
|
+
this._a("radiusX", this.i.adj);
|
|
83
84
|
}
|
|
84
85
|
/**
|
|
85
86
|
* Gets or sets the y-radius of the ellipse that is used to round the corners of the column.
|
|
86
87
|
*/
|
|
87
88
|
get radiusY() {
|
|
88
|
-
return this.i.
|
|
89
|
+
return this.i.adk;
|
|
89
90
|
}
|
|
90
91
|
set radiusY(v) {
|
|
91
|
-
this.i.
|
|
92
|
-
this._a("radiusY", this.i.
|
|
92
|
+
this.i.adk = +v;
|
|
93
|
+
this._a("radiusY", this.i.adk);
|
|
93
94
|
}
|
|
94
95
|
/**
|
|
95
96
|
* Gets or sets the property name that contains the legend labels.
|
|
96
97
|
*/
|
|
97
98
|
get legendLabelMemberPath() {
|
|
98
|
-
return this.i.
|
|
99
|
+
return this.i.ado;
|
|
99
100
|
}
|
|
100
101
|
set legendLabelMemberPath(v) {
|
|
101
|
-
this.i.
|
|
102
|
+
this.i.ado = v;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Determines display mode for zero values in the legend.
|
|
106
|
+
*/
|
|
107
|
+
get legendEmptyValuesMode() {
|
|
108
|
+
return this.i.ade;
|
|
109
|
+
}
|
|
110
|
+
set legendEmptyValuesMode(v) {
|
|
111
|
+
this.i.ade = ensureEnum(LegendEmptyValuesMode_$type, v);
|
|
112
|
+
this._a("legendEmptyValuesMode", enumToString(LegendEmptyValuesMode_$type, this.i.ade));
|
|
102
113
|
}
|
|
103
114
|
/**
|
|
104
115
|
* For a category plotted series, returns the current width of the items within the categories. This only returns a value if the items have some form of width (e.g. columns, bars, etc.) otherwise 0 is returned.
|
package/esm2015/public_api.js
CHANGED
|
@@ -1123,7 +1123,6 @@ export * from './lib/igc-pie-chart-module';
|
|
|
1123
1123
|
export * from './lib/igc-pie-chart-component';
|
|
1124
1124
|
export * from './lib/PieChartViewManager';
|
|
1125
1125
|
export * from './lib/PieLegendTemplates';
|
|
1126
|
-
export * from './lib/LegendEmptyValuesMode';
|
|
1127
1126
|
export * from './lib/LabelsPosition';
|
|
1128
1127
|
export * from './lib/LeaderLineType';
|
|
1129
1128
|
export * from './lib/SliceSelectionMode';
|
|
@@ -16,10 +16,10 @@ import { Brush } from "igniteui-webcomponents-core";
|
|
|
16
16
|
import { PenLineCap_$type } from "igniteui-webcomponents-core";
|
|
17
17
|
import { DoubleCollection } from "igniteui-webcomponents-core";
|
|
18
18
|
import { RadialFrame } from "./RadialFrame";
|
|
19
|
+
import { ProportionalCategoryAngleAxis } from "./ProportionalCategoryAngleAxis";
|
|
19
20
|
import { ScalerParams } from "./ScalerParams";
|
|
20
21
|
import { Rect } from "igniteui-webcomponents-core";
|
|
21
22
|
import { FastItemCoalescingColumn } from "./FastItemCoalescingColumn";
|
|
22
|
-
import { ProportionalCategoryAngleAxis } from "./ProportionalCategoryAngleAxis";
|
|
23
23
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
24
24
|
import { SeriesLayerPropertyOverlay } from "./SeriesLayerPropertyOverlay";
|
|
25
25
|
import { DataLegendSeriesValueInfo } from "igniteui-webcomponents-core";
|
|
@@ -131,7 +131,7 @@ var AnchoredRadialSeries = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
131
131
|
};
|
|
132
132
|
AnchoredRadialSeries.prototype.kr = function (a) {
|
|
133
133
|
if (this.yr != null && this.yr.cl) {
|
|
134
|
-
if (a == this.yr.
|
|
134
|
+
if (a == this.yr.othersIndex) {
|
|
135
135
|
return this.yy;
|
|
136
136
|
}
|
|
137
137
|
}
|
|
@@ -1233,7 +1233,7 @@ var CalloutLayer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1233
1233
|
d = true;
|
|
1234
1234
|
}
|
|
1235
1235
|
a.kg = this.zs;
|
|
1236
|
-
if (!a.gg && a.d9(this.aa9, this.aa4, this.aa0, this.abn)) {
|
|
1236
|
+
if (!a.gg && a.d9(this.aa9, this.aa4, this.aa0, this.abn, false)) {
|
|
1237
1237
|
var e = this.aa9;
|
|
1238
1238
|
var _loop_1 = function (f) {
|
|
1239
1239
|
var g = e._inner[f];
|