igniteui-angular-core 19.1.0 → 20.0.0

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.
Files changed (71) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1402 -1246
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/AxisDescription.js +171 -139
  4. package/esm2015/lib/AxisDescriptionMetadata.js +4 -0
  5. package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
  6. package/esm2015/lib/CategoryAxisBaseDescription.js +23 -23
  7. package/esm2015/lib/CategoryChartDescription.js +130 -130
  8. package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
  9. package/esm2015/lib/CategoryXAxisDescription.js +32 -32
  10. package/esm2015/lib/CategoryYAxisDescription.js +32 -32
  11. package/esm2015/lib/DataPieBaseChartDescription.js +107 -107
  12. package/esm2015/lib/DataPieChartDescription.js +35 -35
  13. package/esm2015/lib/FinancialChartDescription.js +176 -176
  14. package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
  15. package/esm2015/lib/NumericAxisBaseDescription.js +83 -83
  16. package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
  17. package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
  18. package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
  19. package/esm2015/lib/RadialBaseChartDescription.js +215 -183
  20. package/esm2015/lib/RadialBaseChartDescriptionMetadata.js +4 -0
  21. package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
  22. package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
  23. package/esm2015/lib/TimeXAxisDescription.js +12 -12
  24. package/esm2015/lib/XYChartDescription.js +215 -183
  25. package/esm2015/lib/XYChartDescriptionMetadata.js +4 -0
  26. package/esm5/lib/AxisDescription.js +187 -139
  27. package/esm5/lib/AxisDescriptionMetadata.js +4 -0
  28. package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
  29. package/esm5/lib/CategoryAxisBaseDescription.js +23 -23
  30. package/esm5/lib/CategoryChartDescription.js +130 -130
  31. package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
  32. package/esm5/lib/CategoryXAxisDescription.js +32 -32
  33. package/esm5/lib/CategoryYAxisDescription.js +32 -32
  34. package/esm5/lib/DataPieBaseChartDescription.js +107 -107
  35. package/esm5/lib/DataPieChartDescription.js +35 -35
  36. package/esm5/lib/FinancialChartDescription.js +176 -176
  37. package/esm5/lib/NumericAngleAxisDescription.js +6 -6
  38. package/esm5/lib/NumericAxisBaseDescription.js +83 -83
  39. package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
  40. package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
  41. package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
  42. package/esm5/lib/RadialBaseChartDescription.js +231 -183
  43. package/esm5/lib/RadialBaseChartDescriptionMetadata.js +4 -0
  44. package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
  45. package/esm5/lib/TimeAxisBaseDescription.js +24 -24
  46. package/esm5/lib/TimeXAxisDescription.js +12 -12
  47. package/esm5/lib/XYChartDescription.js +231 -183
  48. package/esm5/lib/XYChartDescriptionMetadata.js +4 -0
  49. package/fesm2015/igniteui-angular-core.js +1354 -1246
  50. package/fesm5/igniteui-angular-core.js +1402 -1246
  51. package/lib/AxisDescription.d.ts +60 -48
  52. package/lib/CategoryAngleAxisDescription.d.ts +7 -7
  53. package/lib/CategoryAxisBaseDescription.d.ts +8 -8
  54. package/lib/CategoryChartDescription.d.ts +45 -45
  55. package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
  56. package/lib/CategoryXAxisDescription.d.ts +11 -11
  57. package/lib/CategoryYAxisDescription.d.ts +11 -11
  58. package/lib/DataPieBaseChartDescription.d.ts +38 -38
  59. package/lib/DataPieChartDescription.d.ts +12 -12
  60. package/lib/FinancialChartDescription.d.ts +61 -61
  61. package/lib/NumericAngleAxisDescription.d.ts +2 -2
  62. package/lib/NumericAxisBaseDescription.d.ts +28 -28
  63. package/lib/NumericRadiusAxisDescription.d.ts +2 -2
  64. package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
  65. package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
  66. package/lib/RadialBaseChartDescription.d.ts +77 -65
  67. package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
  68. package/lib/TimeAxisBaseDescription.d.ts +8 -8
  69. package/lib/TimeXAxisDescription.d.ts +4 -4
  70. package/lib/XYChartDescription.d.ts +77 -65
  71. package/package.json +4 -4
@@ -13,75 +13,79 @@ export let AxisDescription = /*@__PURE__*/ (() => {
13
13
  class AxisDescription extends Description {
14
14
  constructor() {
15
15
  super();
16
- this.by = null;
17
- this.cg = null;
18
- this.ce = null;
19
- this.bv = null;
20
- this.aw = 0;
16
+ this.b6 = null;
17
+ this.co = null;
18
+ this.cm = null;
19
+ this.b3 = null;
20
+ this.ay = 0;
21
21
  this.l = null;
22
- this.cd = null;
23
- this.b9 = null;
24
- this.bt = null;
25
- this.au = 0;
22
+ this.cl = null;
23
+ this.ch = null;
24
+ this.b1 = null;
25
+ this.aw = 0;
26
26
  this.j = null;
27
- this.ca = null;
28
- this.bu = null;
29
- this.av = 0;
27
+ this.ci = null;
28
+ this.b2 = null;
29
+ this.ax = 0;
30
30
  this.k = null;
31
- this.cf = null;
32
- this.ay = 0;
31
+ this.cn = null;
32
+ this.a0 = 0;
33
33
  this.m = null;
34
- this.ax = 0;
34
+ this.az = 0;
35
35
  this.v = false;
36
36
  this.w = false;
37
37
  this.y = false;
38
38
  this.z = false;
39
39
  this.ac = false;
40
40
  this.ab = false;
41
- this.bp = 0;
41
+ this.bx = 0;
42
42
  this.t = false;
43
- this.b6 = null;
44
- this.b5 = null;
43
+ this.ce = null;
44
+ this.cd = null;
45
45
  this.x = false;
46
46
  this.an = 0;
47
47
  this.ap = 0;
48
- this.ar = 0;
49
48
  this.as = 0;
50
49
  this.at = 0;
50
+ this.ar = 0;
51
+ this.au = 0;
52
+ this.av = 0;
51
53
  this.ao = 0;
52
- this.b4 = null;
53
- this.b7 = null;
54
- this.bx = null;
55
- this.br = null;
56
- this.cm = null;
57
- this.cn = null;
58
- this.cl = null;
54
+ this.cc = null;
55
+ this.cf = null;
56
+ this.b5 = null;
57
+ this.bz = null;
58
+ this.cu = null;
59
+ this.cv = null;
60
+ this.ct = null;
59
61
  this.aa = false;
60
- this.az = 0;
61
62
  this.a1 = 0;
62
63
  this.a3 = 0;
63
- this.a4 = 0;
64
+ this.a6 = 0;
65
+ this.a7 = 0;
64
66
  this.a5 = 0;
65
- this.a0 = 0;
66
- this.ck = null;
67
- this.co = null;
67
+ this.a8 = 0;
68
+ this.a9 = 0;
69
+ this.a2 = 0;
70
+ this.cs = null;
71
+ this.cw = null;
68
72
  this.h = null;
69
- this.bw = null;
73
+ this.b4 = null;
70
74
  this.u = false;
71
- this.b3 = null;
72
- this.i = null;
73
75
  this.cb = null;
74
- this.cc = null;
75
- this.bz = null;
76
- this.b0 = null;
77
- this.aq = 0;
78
- this.b2 = null;
79
- this.b1 = null;
80
- this.ch = null;
81
- this.a2 = 0;
76
+ this.i = null;
82
77
  this.cj = null;
83
- this.ci = null;
78
+ this.ck = null;
79
+ this.b7 = null;
84
80
  this.b8 = null;
81
+ this.aq = 0;
82
+ this.ca = null;
83
+ this.b9 = null;
84
+ this.cp = null;
85
+ this.a4 = 0;
86
+ this.cr = null;
87
+ this.cq = null;
88
+ this.cg = null;
85
89
  }
86
90
  get_type() {
87
91
  return "Axis";
@@ -90,38 +94,38 @@ export let AxisDescription = /*@__PURE__*/ (() => {
90
94
  return this.get_type();
91
95
  }
92
96
  get formatLabelRef() {
93
- return this.by;
97
+ return this.b6;
94
98
  }
95
99
  set formatLabelRef(a) {
96
- this.by = a;
100
+ this.b6 = a;
97
101
  this.g("FormatLabelRef");
98
102
  }
99
103
  get title() {
100
- return this.cg;
104
+ return this.co;
101
105
  }
102
106
  set title(a) {
103
- this.cg = a;
107
+ this.co = a;
104
108
  this.g("Title");
105
109
  }
106
110
  get stroke() {
107
- return this.ce;
111
+ return this.cm;
108
112
  }
109
113
  set stroke(a) {
110
- this.ce = a;
114
+ this.cm = a;
111
115
  this.g("Stroke");
112
116
  }
113
117
  get actualStroke() {
114
- return this.bv;
118
+ return this.b3;
115
119
  }
116
120
  set actualStroke(a) {
117
- this.bv = a;
121
+ this.b3 = a;
118
122
  this.g("ActualStroke");
119
123
  }
120
124
  get strokeThickness() {
121
- return this.aw;
125
+ return this.ay;
122
126
  }
123
127
  set strokeThickness(a) {
124
- this.aw = a;
128
+ this.ay = a;
125
129
  this.g("StrokeThickness");
126
130
  }
127
131
  get strokeDashArray() {
@@ -132,31 +136,31 @@ export let AxisDescription = /*@__PURE__*/ (() => {
132
136
  this.g("StrokeDashArray");
133
137
  }
134
138
  get strip() {
135
- return this.cd;
139
+ return this.cl;
136
140
  }
137
141
  set strip(a) {
138
- this.cd = a;
142
+ this.cl = a;
139
143
  this.g("Strip");
140
144
  }
141
145
  get majorStroke() {
142
- return this.b9;
146
+ return this.ch;
143
147
  }
144
148
  set majorStroke(a) {
145
- this.b9 = a;
149
+ this.ch = a;
146
150
  this.g("MajorStroke");
147
151
  }
148
152
  get actualMajorStroke() {
149
- return this.bt;
153
+ return this.b1;
150
154
  }
151
155
  set actualMajorStroke(a) {
152
- this.bt = a;
156
+ this.b1 = a;
153
157
  this.g("ActualMajorStroke");
154
158
  }
155
159
  get majorStrokeThickness() {
156
- return this.au;
160
+ return this.aw;
157
161
  }
158
162
  set majorStrokeThickness(a) {
159
- this.au = a;
163
+ this.aw = a;
160
164
  this.g("MajorStrokeThickness");
161
165
  }
162
166
  get majorStrokeDashArray() {
@@ -167,24 +171,24 @@ export let AxisDescription = /*@__PURE__*/ (() => {
167
171
  this.g("MajorStrokeDashArray");
168
172
  }
169
173
  get minorStroke() {
170
- return this.ca;
174
+ return this.ci;
171
175
  }
172
176
  set minorStroke(a) {
173
- this.ca = a;
177
+ this.ci = a;
174
178
  this.g("MinorStroke");
175
179
  }
176
180
  get actualMinorStroke() {
177
- return this.bu;
181
+ return this.b2;
178
182
  }
179
183
  set actualMinorStroke(a) {
180
- this.bu = a;
184
+ this.b2 = a;
181
185
  this.g("ActualMinorStroke");
182
186
  }
183
187
  get minorStrokeThickness() {
184
- return this.av;
188
+ return this.ax;
185
189
  }
186
190
  set minorStrokeThickness(a) {
187
- this.av = a;
191
+ this.ax = a;
188
192
  this.g("MinorStrokeThickness");
189
193
  }
190
194
  get minorStrokeDashArray() {
@@ -195,17 +199,17 @@ export let AxisDescription = /*@__PURE__*/ (() => {
195
199
  this.g("MinorStrokeDashArray");
196
200
  }
197
201
  get tickStroke() {
198
- return this.cf;
202
+ return this.cn;
199
203
  }
200
204
  set tickStroke(a) {
201
- this.cf = a;
205
+ this.cn = a;
202
206
  this.g("TickStroke");
203
207
  }
204
208
  get tickStrokeThickness() {
205
- return this.ay;
209
+ return this.a0;
206
210
  }
207
211
  set tickStrokeThickness(a) {
208
- this.ay = a;
212
+ this.a0 = a;
209
213
  this.g("TickStrokeThickness");
210
214
  }
211
215
  get tickStrokeDashArray() {
@@ -216,10 +220,10 @@ export let AxisDescription = /*@__PURE__*/ (() => {
216
220
  this.g("TickStrokeDashArray");
217
221
  }
218
222
  get tickLength() {
219
- return this.ax;
223
+ return this.az;
220
224
  }
221
225
  set tickLength(a) {
222
- this.ax = a;
226
+ this.az = a;
223
227
  this.g("TickLength");
224
228
  }
225
229
  get isDisabled() {
@@ -265,10 +269,10 @@ export let AxisDescription = /*@__PURE__*/ (() => {
265
269
  this.g("UseEnhancedIntervalManagement");
266
270
  }
267
271
  get enhancedIntervalMinimumCharacters() {
268
- return this.bp;
272
+ return this.bx;
269
273
  }
270
274
  set enhancedIntervalMinimumCharacters(a) {
271
- this.bp = a;
275
+ this.bx = a;
272
276
  this.g("EnhancedIntervalMinimumCharacters");
273
277
  }
274
278
  get enhancedIntervalPreferMoreCategoryLabels() {
@@ -279,17 +283,17 @@ export let AxisDescription = /*@__PURE__*/ (() => {
279
283
  this.g("EnhancedIntervalPreferMoreCategoryLabels");
280
284
  }
281
285
  get labelTextColor() {
282
- return this.b6;
286
+ return this.ce;
283
287
  }
284
288
  set labelTextColor(a) {
285
- this.b6 = a;
289
+ this.ce = a;
286
290
  this.g("LabelTextColor");
287
291
  }
288
292
  get labelLocation() {
289
- return this.b5;
293
+ return this.cd;
290
294
  }
291
295
  set labelLocation(a) {
292
- this.b5 = a;
296
+ this.cd = a;
293
297
  this.g("LabelLocation");
294
298
  }
295
299
  get labelShowFirstLabel() {
@@ -313,6 +317,20 @@ export let AxisDescription = /*@__PURE__*/ (() => {
313
317
  this.ap = a;
314
318
  this.g("LabelExtent");
315
319
  }
320
+ get labelMaximumExtent() {
321
+ return this.as;
322
+ }
323
+ set labelMaximumExtent(a) {
324
+ this.as = a;
325
+ this.g("LabelMaximumExtent");
326
+ }
327
+ get labelMaximumExtentPercentage() {
328
+ return this.at;
329
+ }
330
+ set labelMaximumExtentPercentage(a) {
331
+ this.at = a;
332
+ this.g("LabelMaximumExtentPercentage");
333
+ }
316
334
  get labelLeftMargin() {
317
335
  return this.ar;
318
336
  }
@@ -321,17 +339,17 @@ export let AxisDescription = /*@__PURE__*/ (() => {
321
339
  this.g("LabelLeftMargin");
322
340
  }
323
341
  get labelRightMargin() {
324
- return this.as;
342
+ return this.au;
325
343
  }
326
344
  set labelRightMargin(a) {
327
- this.as = a;
345
+ this.au = a;
328
346
  this.g("LabelRightMargin");
329
347
  }
330
348
  get labelTopMargin() {
331
- return this.at;
349
+ return this.av;
332
350
  }
333
351
  set labelTopMargin(a) {
334
- this.at = a;
352
+ this.av = a;
335
353
  this.g("LabelTopMargin");
336
354
  }
337
355
  get labelBottomMargin() {
@@ -342,52 +360,52 @@ export let AxisDescription = /*@__PURE__*/ (() => {
342
360
  this.g("LabelBottomMargin");
343
361
  }
344
362
  get labelHorizontalAlignment() {
345
- return this.b4;
363
+ return this.cc;
346
364
  }
347
365
  set labelHorizontalAlignment(a) {
348
- this.b4 = a;
366
+ this.cc = a;
349
367
  this.g("LabelHorizontalAlignment");
350
368
  }
351
369
  get labelVerticalAlignment() {
352
- return this.b7;
370
+ return this.cf;
353
371
  }
354
372
  set labelVerticalAlignment(a) {
355
- this.b7 = a;
373
+ this.cf = a;
356
374
  this.g("LabelVerticalAlignment");
357
375
  }
358
376
  get crossingAxisRef() {
359
- return this.bx;
377
+ return this.b5;
360
378
  }
361
379
  set crossingAxisRef(a) {
362
- this.bx = a;
380
+ this.b5 = a;
363
381
  this.g("CrossingAxisRef");
364
382
  }
365
383
  get crossingValue() {
366
- return this.br;
384
+ return this.bz;
367
385
  }
368
386
  set crossingValue(a) {
369
- this.br = a;
387
+ this.bz = a;
370
388
  this.g("CrossingValue");
371
389
  }
372
390
  get titlePosition() {
373
- return this.cm;
391
+ return this.cu;
374
392
  }
375
393
  set titlePosition(a) {
376
- this.cm = a;
394
+ this.cu = a;
377
395
  this.g("TitlePosition");
378
396
  }
379
397
  get titleTextColor() {
380
- return this.cn;
398
+ return this.cv;
381
399
  }
382
400
  set titleTextColor(a) {
383
- this.cn = a;
401
+ this.cv = a;
384
402
  this.g("TitleTextColor");
385
403
  }
386
404
  get titleLocation() {
387
- return this.cl;
405
+ return this.ct;
388
406
  }
389
407
  set titleLocation(a) {
390
- this.cl = a;
408
+ this.ct = a;
391
409
  this.g("TitleLocation");
392
410
  }
393
411
  get titleShowFirstLabel() {
@@ -398,59 +416,73 @@ export let AxisDescription = /*@__PURE__*/ (() => {
398
416
  this.g("TitleShowFirstLabel");
399
417
  }
400
418
  get titleAngle() {
401
- return this.az;
419
+ return this.a1;
402
420
  }
403
421
  set titleAngle(a) {
404
- this.az = a;
422
+ this.a1 = a;
405
423
  this.g("TitleAngle");
406
424
  }
407
425
  get titleExtent() {
408
- return this.a1;
426
+ return this.a3;
409
427
  }
410
428
  set titleExtent(a) {
411
- this.a1 = a;
429
+ this.a3 = a;
412
430
  this.g("TitleExtent");
413
431
  }
432
+ get titleMaximumExtent() {
433
+ return this.a6;
434
+ }
435
+ set titleMaximumExtent(a) {
436
+ this.a6 = a;
437
+ this.g("TitleMaximumExtent");
438
+ }
439
+ get titleMaximumExtentPercentage() {
440
+ return this.a7;
441
+ }
442
+ set titleMaximumExtentPercentage(a) {
443
+ this.a7 = a;
444
+ this.g("TitleMaximumExtentPercentage");
445
+ }
414
446
  get titleLeftMargin() {
415
- return this.a3;
447
+ return this.a5;
416
448
  }
417
449
  set titleLeftMargin(a) {
418
- this.a3 = a;
450
+ this.a5 = a;
419
451
  this.g("TitleLeftMargin");
420
452
  }
421
453
  get titleRightMargin() {
422
- return this.a4;
454
+ return this.a8;
423
455
  }
424
456
  set titleRightMargin(a) {
425
- this.a4 = a;
457
+ this.a8 = a;
426
458
  this.g("TitleRightMargin");
427
459
  }
428
460
  get titleTopMargin() {
429
- return this.a5;
461
+ return this.a9;
430
462
  }
431
463
  set titleTopMargin(a) {
432
- this.a5 = a;
464
+ this.a9 = a;
433
465
  this.g("TitleTopMargin");
434
466
  }
435
467
  get titleBottomMargin() {
436
- return this.a0;
468
+ return this.a2;
437
469
  }
438
470
  set titleBottomMargin(a) {
439
- this.a0 = a;
471
+ this.a2 = a;
440
472
  this.g("TitleBottomMargin");
441
473
  }
442
474
  get titleHorizontalAlignment() {
443
- return this.ck;
475
+ return this.cs;
444
476
  }
445
477
  set titleHorizontalAlignment(a) {
446
- this.ck = a;
478
+ this.cs = a;
447
479
  this.g("TitleHorizontalAlignment");
448
480
  }
449
481
  get titleVerticalAlignment() {
450
- return this.co;
482
+ return this.cw;
451
483
  }
452
484
  set titleVerticalAlignment(a) {
453
- this.co = a;
485
+ this.cw = a;
454
486
  this.g("TitleVerticalAlignment");
455
487
  }
456
488
  get annotations() {
@@ -461,10 +493,10 @@ export let AxisDescription = /*@__PURE__*/ (() => {
461
493
  this.g("Annotations");
462
494
  }
463
495
  get coercionMethodsRef() {
464
- return this.bw;
496
+ return this.b4;
465
497
  }
466
498
  set coercionMethodsRef(a) {
467
- this.bw = a;
499
+ this.b4 = a;
468
500
  this.g("CoercionMethodsRef");
469
501
  }
470
502
  get expectFunctions() {
@@ -475,10 +507,10 @@ export let AxisDescription = /*@__PURE__*/ (() => {
475
507
  this.g("ExpectFunctions");
476
508
  }
477
509
  get labelFormat() {
478
- return this.b3;
510
+ return this.cb;
479
511
  }
480
512
  set labelFormat(a) {
481
- this.b3 = a;
513
+ this.cb = a;
482
514
  this.g("LabelFormat");
483
515
  }
484
516
  get labelFormatSpecifiers() {
@@ -489,31 +521,31 @@ export let AxisDescription = /*@__PURE__*/ (() => {
489
521
  this.g("LabelFormatSpecifiers");
490
522
  }
491
523
  get rangeChangedRef() {
492
- return this.cb;
524
+ return this.cj;
493
525
  }
494
526
  set rangeChangedRef(a) {
495
- this.cb = a;
527
+ this.cj = a;
496
528
  this.g("RangeChangedRef");
497
529
  }
498
530
  get renderRequestedRef() {
499
- return this.cc;
531
+ return this.ck;
500
532
  }
501
533
  set renderRequestedRef(a) {
502
- this.cc = a;
534
+ this.ck = a;
503
535
  this.g("RenderRequestedRef");
504
536
  }
505
537
  get label() {
506
- return this.bz;
538
+ return this.b7;
507
539
  }
508
540
  set label(a) {
509
- this.bz = a;
541
+ this.b7 = a;
510
542
  this.g("Label");
511
543
  }
512
544
  get labelFontFamily() {
513
- return this.b0;
545
+ return this.b8;
514
546
  }
515
547
  set labelFontFamily(a) {
516
- this.b0 = a;
548
+ this.b8 = a;
517
549
  this.g("LabelFontFamily");
518
550
  }
519
551
  get labelFontSize() {
@@ -524,52 +556,52 @@ export let AxisDescription = /*@__PURE__*/ (() => {
524
556
  this.g("LabelFontSize");
525
557
  }
526
558
  get labelFontWeight() {
527
- return this.b2;
559
+ return this.ca;
528
560
  }
529
561
  set labelFontWeight(a) {
530
- this.b2 = a;
562
+ this.ca = a;
531
563
  this.g("LabelFontWeight");
532
564
  }
533
565
  get labelFontStyle() {
534
- return this.b1;
566
+ return this.b9;
535
567
  }
536
568
  set labelFontStyle(a) {
537
- this.b1 = a;
569
+ this.b9 = a;
538
570
  this.g("LabelFontStyle");
539
571
  }
540
572
  get titleFontFamily() {
541
- return this.ch;
573
+ return this.cp;
542
574
  }
543
575
  set titleFontFamily(a) {
544
- this.ch = a;
576
+ this.cp = a;
545
577
  this.g("TitleFontFamily");
546
578
  }
547
579
  get titleFontSize() {
548
- return this.a2;
580
+ return this.a4;
549
581
  }
550
582
  set titleFontSize(a) {
551
- this.a2 = a;
583
+ this.a4 = a;
552
584
  this.g("TitleFontSize");
553
585
  }
554
586
  get titleFontWeight() {
555
- return this.cj;
587
+ return this.cr;
556
588
  }
557
589
  set titleFontWeight(a) {
558
- this.cj = a;
590
+ this.cr = a;
559
591
  this.g("TitleFontWeight");
560
592
  }
561
593
  get titleFontStyle() {
562
- return this.ci;
594
+ return this.cq;
563
595
  }
564
596
  set titleFontStyle(a) {
565
- this.ci = a;
597
+ this.cq = a;
566
598
  this.g("TitleFontStyle");
567
599
  }
568
600
  get labelVisibility() {
569
- return this.b8;
601
+ return this.cg;
570
602
  }
571
603
  set labelVisibility(a) {
572
- this.b8 = a;
604
+ this.cg = a;
573
605
  this.g("LabelVisibility");
574
606
  }
575
607
  }
@@ -59,6 +59,8 @@ export let AxisDescriptionMetadata = /*@__PURE__*/ (() => {
59
59
  a.item("LabelShowFirstLabel", "(w:LabelSettings.ShowFirstLabel,wf:LabelShowFirstLabel)Boolean");
60
60
  a.item("LabelAngle", "(w:LabelSettings.Angle,wf:LabelAngle)Number:double");
61
61
  a.item("LabelExtent", "(w:LabelSettings.Extent,wf:LabelExtent)Number:double");
62
+ a.item("LabelMaximumExtent", "(w:LabelSettings.MaximumExtent,wf:LabelMaximumExtent)Number:double");
63
+ a.item("LabelMaximumExtentPercentage", "(w:LabelSettings.MaximumExtentPercentage,wf:LabelMaximumExtentPercentage)Number:double");
62
64
  a.item("LabelLeftMargin", "(w:LabelSettings.LeftMargin,wf:LabelLeftMargin)Number:double");
63
65
  a.item("LabelRightMargin", "(w:LabelSettings.RightMargin,wf:LabelRightMargin)Number:double");
64
66
  a.item("LabelTopMargin", "(w:LabelSettings.TopMargin,wf:LabelTopMargin)Number:double");
@@ -78,6 +80,8 @@ export let AxisDescriptionMetadata = /*@__PURE__*/ (() => {
78
80
  a.item("TitleShowFirstLabel", "(w:TitleSettings.ShowFirstLabel,wf:TitleShowFirstLabel)Boolean");
79
81
  a.item("TitleAngle", "(w:TitleSettings.Angle,wf:TitleAngle)Number:double");
80
82
  a.item("TitleExtent", "(w:TitleSettings.Extent,wf:TitleExtent)Number:double");
83
+ a.item("TitleMaximumExtent", "(w:TitleSettings.MaximumExtent,wf:TitleMaximumExtent)Number:double");
84
+ a.item("TitleMaximumExtentPercentage", "(w:TitleSettings.MaximumExtentPercentage,wf:TitleMaximumExtentPercentage)Number:double");
81
85
  a.item("TitleLeftMargin", "(w:TitleSettings.LeftMargin,wf:TitleLeftMargin)Number:double");
82
86
  a.item("TitleRightMargin", "(w:TitleSettings.RightMargin,wf:TitleRightMargin)Number:double");
83
87
  a.item("TitleTopMargin", "(w:TitleSettings.TopMargin,wf:TitleTopMargin)Number:double");