igniteui-webcomponents-charts 4.0.2 → 4.0.4
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 +1016 -891
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/AnchoredCategorySeries_combined.js +3 -2
- package/esm2015/lib/AnchoredRadialBucketCalculator_combined.js +4 -3
- package/esm2015/lib/BubbleSeries_combined.js +20 -15
- package/esm2015/lib/CategoryToolTipLayer_combined.js +3 -1
- package/esm2015/lib/DataLegendContent_combined.js +470 -457
- package/esm2015/lib/DataLegendStylingColumnEventArgs.js +2 -1
- package/esm2015/lib/DataToolTipLayer_combined.js +3 -1
- package/esm2015/lib/FinancialPriceSeries_combined.js +33 -26
- package/esm2015/lib/HighDensityScatterSeries_combined.js +8 -6
- package/esm2015/lib/HorizontalRangeCategorySeries.js +12 -8
- package/esm2015/lib/ItemToolTipLayer_combined.js +3 -1
- package/esm2015/lib/PolarBase_combined.js +8 -6
- package/esm2015/lib/ScatterAreaSeries_combined.js +12 -9
- package/esm2015/lib/ScatterBase_combined.js +8 -6
- package/esm2015/lib/ScatterContourSeries_combined.js +12 -9
- package/esm2015/lib/ScatterTriangulationSeries.js +8 -8
- package/esm2015/lib/SeriesViewer_combined.js +2 -1
- package/esm2015/lib/StackedSeriesCreatedEventArgs_combined.js +21 -9
- package/esm2015/lib/igc-assigning-series-style-event-args-base.js +5 -3
- package/esm2015/lib/igc-data-legend-component.js +256 -256
- package/esm2015/lib/igc-data-legend-styling-column-event-args.js +19 -10
- package/esm2015/lib/igc-domain-chart-component.js +45 -27
- package/esm2015/lib/igc-financial-event-args.js +10 -6
- package/esm2015/lib/igc-ring-series-component.js +5 -3
- package/esm2015/lib/igc-scatter-polygon-series-component.js +5 -3
- package/esm2015/lib/igc-scatter-polyline-series-component.js +5 -3
- package/esm2015/lib/igc-stacked-series-created-event-args.js +5 -3
- package/esm5/lib/AnchoredCategorySeries_combined.js +3 -2
- package/esm5/lib/AnchoredRadialBucketCalculator_combined.js +4 -3
- package/esm5/lib/BubbleSeries_combined.js +20 -15
- package/esm5/lib/CategoryToolTipLayer_combined.js +3 -1
- package/esm5/lib/DataLegendContent_combined.js +474 -461
- package/esm5/lib/DataLegendStylingColumnEventArgs.js +2 -1
- package/esm5/lib/DataToolTipLayer_combined.js +3 -1
- package/esm5/lib/FinancialPriceSeries_combined.js +33 -26
- package/esm5/lib/HighDensityScatterSeries_combined.js +8 -6
- package/esm5/lib/HorizontalRangeCategorySeries.js +12 -8
- package/esm5/lib/ItemToolTipLayer_combined.js +3 -1
- package/esm5/lib/PolarBase_combined.js +8 -6
- package/esm5/lib/ScatterAreaSeries_combined.js +12 -9
- package/esm5/lib/ScatterBase_combined.js +8 -6
- package/esm5/lib/ScatterContourSeries_combined.js +12 -9
- package/esm5/lib/ScatterTriangulationSeries.js +8 -8
- package/esm5/lib/SeriesViewer_combined.js +2 -1
- package/esm5/lib/StackedSeriesCreatedEventArgs_combined.js +43 -14
- package/esm5/lib/igc-assigning-series-style-event-args-base.js +5 -3
- package/esm5/lib/igc-data-legend-component.js +256 -256
- package/esm5/lib/igc-data-legend-styling-column-event-args.js +22 -9
- package/esm5/lib/igc-domain-chart-component.js +45 -27
- package/esm5/lib/igc-financial-event-args.js +10 -6
- package/esm5/lib/igc-ring-series-component.js +5 -3
- package/esm5/lib/igc-scatter-polygon-series-component.js +5 -3
- package/esm5/lib/igc-scatter-polyline-series-component.js +5 -3
- package/esm5/lib/igc-stacked-series-created-event-args.js +5 -3
- package/fesm2015/igniteui-webcomponents-charts.js +987 -883
- package/fesm5/igniteui-webcomponents-charts.js +1016 -891
- package/lib/DataLegendContent_combined.d.ts +111 -109
- package/lib/DataLegendStylingColumnEventArgs.d.ts +3 -2
- package/lib/StackedSeriesCreatedEventArgs_combined.d.ts +3 -2
- package/lib/igc-data-legend-styling-column-event-args.d.ts +5 -1
- package/package.json +2 -2
|
@@ -292,11 +292,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
292
292
|
* A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control to appear blurry.
|
|
293
293
|
*/
|
|
294
294
|
get: function () {
|
|
295
|
-
return this.i.
|
|
295
|
+
return this.i.co;
|
|
296
296
|
},
|
|
297
297
|
set: function (v) {
|
|
298
|
-
this.i.
|
|
299
|
-
this._a("actualPixelScalingRatio", this.i.
|
|
298
|
+
this.i.co = +v;
|
|
299
|
+
this._a("actualPixelScalingRatio", this.i.co);
|
|
300
300
|
},
|
|
301
301
|
enumerable: true,
|
|
302
302
|
configurable: true
|
|
@@ -377,11 +377,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
377
377
|
* Gets or sets whether the data legend should update when the series data is mutated.
|
|
378
378
|
*/
|
|
379
379
|
get: function () {
|
|
380
|
-
return this.i.
|
|
380
|
+
return this.i.b3;
|
|
381
381
|
},
|
|
382
382
|
set: function (v) {
|
|
383
|
-
this.i.
|
|
384
|
-
this._a("shouldUpdateWhenSeriesDataChanges", this.i.
|
|
383
|
+
this.i.b3 = ensureBool(v);
|
|
384
|
+
this._a("shouldUpdateWhenSeriesDataChanges", this.i.b3);
|
|
385
385
|
},
|
|
386
386
|
enumerable: true,
|
|
387
387
|
configurable: true
|
|
@@ -407,11 +407,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
407
407
|
* This property is ignored when setting ValueFormatSpecifiers or ValueFormatString properties
|
|
408
408
|
*/
|
|
409
409
|
get: function () {
|
|
410
|
-
return this.i.
|
|
410
|
+
return this.i.cu;
|
|
411
411
|
},
|
|
412
412
|
set: function (v) {
|
|
413
|
-
this.i.
|
|
414
|
-
this._a("valueFormatMaxFractions", this.i.
|
|
413
|
+
this.i.cu = +v;
|
|
414
|
+
this._a("valueFormatMaxFractions", this.i.cu);
|
|
415
415
|
},
|
|
416
416
|
enumerable: true,
|
|
417
417
|
configurable: true
|
|
@@ -422,11 +422,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
422
422
|
* This property is ignored when setting ValueFormatSpecifiers or ValueFormatString properties
|
|
423
423
|
*/
|
|
424
424
|
get: function () {
|
|
425
|
-
return this.i.
|
|
425
|
+
return this.i.cv;
|
|
426
426
|
},
|
|
427
427
|
set: function (v) {
|
|
428
|
-
this.i.
|
|
429
|
-
this._a("valueFormatMinFractions", this.i.
|
|
428
|
+
this.i.cv = +v;
|
|
429
|
+
this._a("valueFormatMinFractions", this.i.cv);
|
|
430
430
|
},
|
|
431
431
|
enumerable: true,
|
|
432
432
|
configurable: true
|
|
@@ -451,10 +451,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
451
451
|
* This property is ignored when setting ValueFormatSpecifiers or ValueFormatString properties
|
|
452
452
|
*/
|
|
453
453
|
get: function () {
|
|
454
|
-
return this.i.
|
|
454
|
+
return this.i.ey;
|
|
455
455
|
},
|
|
456
456
|
set: function (v) {
|
|
457
|
-
this.i.
|
|
457
|
+
this.i.ey = v;
|
|
458
458
|
},
|
|
459
459
|
enumerable: true,
|
|
460
460
|
configurable: true
|
|
@@ -465,10 +465,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
465
465
|
* This property is ignored when setting ValueFormatSpecifiers or ValueFormatString properties
|
|
466
466
|
*/
|
|
467
467
|
get: function () {
|
|
468
|
-
return this.i.
|
|
468
|
+
return this.i.e0;
|
|
469
469
|
},
|
|
470
470
|
set: function (v) {
|
|
471
|
-
this.i.
|
|
471
|
+
this.i.e0 = v;
|
|
472
472
|
},
|
|
473
473
|
enumerable: true,
|
|
474
474
|
configurable: true
|
|
@@ -479,11 +479,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
479
479
|
* This property is ignored when setting ValueFormatSpecifiers or ValueFormatString properties
|
|
480
480
|
*/
|
|
481
481
|
get: function () {
|
|
482
|
-
return this.i.
|
|
482
|
+
return this.i.b4;
|
|
483
483
|
},
|
|
484
484
|
set: function (v) {
|
|
485
|
-
this.i.
|
|
486
|
-
this._a("valueFormatUseGrouping", this.i.
|
|
485
|
+
this.i.b4 = ensureBool(v);
|
|
486
|
+
this._a("valueFormatUseGrouping", this.i.b4);
|
|
487
487
|
},
|
|
488
488
|
enumerable: true,
|
|
489
489
|
configurable: true
|
|
@@ -493,10 +493,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
493
493
|
* Gets or sets the format string for values displayed in the data legend.
|
|
494
494
|
*/
|
|
495
495
|
get: function () {
|
|
496
|
-
return this.i.
|
|
496
|
+
return this.i.e6;
|
|
497
497
|
},
|
|
498
498
|
set: function (v) {
|
|
499
|
-
this.i.
|
|
499
|
+
this.i.e6 = v;
|
|
500
500
|
},
|
|
501
501
|
enumerable: true,
|
|
502
502
|
configurable: true
|
|
@@ -520,72 +520,72 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
520
520
|
});
|
|
521
521
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueRowMarginBottom", {
|
|
522
522
|
get: function () {
|
|
523
|
-
return this.i.
|
|
523
|
+
return this.i.is ? this.i.is.bottom : NaN;
|
|
524
524
|
},
|
|
525
525
|
set: function (v) {
|
|
526
526
|
this.ensureValueRowMargin();
|
|
527
|
-
this.i.
|
|
528
|
-
this._a("valueRowMarginBottom", this.i.
|
|
529
|
-
this.i.
|
|
527
|
+
this.i.is.bottom = +v;
|
|
528
|
+
this._a("valueRowMarginBottom", this.i.is.bottom);
|
|
529
|
+
this.i.is = this.i.is;
|
|
530
530
|
},
|
|
531
531
|
enumerable: true,
|
|
532
532
|
configurable: true
|
|
533
533
|
});
|
|
534
534
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueRowMarginLeft", {
|
|
535
535
|
get: function () {
|
|
536
|
-
return this.i.
|
|
536
|
+
return this.i.is ? this.i.is.left : NaN;
|
|
537
537
|
},
|
|
538
538
|
set: function (v) {
|
|
539
539
|
this.ensureValueRowMargin();
|
|
540
|
-
this.i.
|
|
541
|
-
this._a("valueRowMarginLeft", this.i.
|
|
542
|
-
this.i.
|
|
540
|
+
this.i.is.left = +v;
|
|
541
|
+
this._a("valueRowMarginLeft", this.i.is.left);
|
|
542
|
+
this.i.is = this.i.is;
|
|
543
543
|
},
|
|
544
544
|
enumerable: true,
|
|
545
545
|
configurable: true
|
|
546
546
|
});
|
|
547
547
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueRowMarginRight", {
|
|
548
548
|
get: function () {
|
|
549
|
-
return this.i.
|
|
549
|
+
return this.i.is ? this.i.is.right : NaN;
|
|
550
550
|
},
|
|
551
551
|
set: function (v) {
|
|
552
552
|
this.ensureValueRowMargin();
|
|
553
|
-
this.i.
|
|
554
|
-
this._a("valueRowMarginRight", this.i.
|
|
555
|
-
this.i.
|
|
553
|
+
this.i.is.right = +v;
|
|
554
|
+
this._a("valueRowMarginRight", this.i.is.right);
|
|
555
|
+
this.i.is = this.i.is;
|
|
556
556
|
},
|
|
557
557
|
enumerable: true,
|
|
558
558
|
configurable: true
|
|
559
559
|
});
|
|
560
560
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueRowMarginTop", {
|
|
561
561
|
get: function () {
|
|
562
|
-
return this.i.
|
|
562
|
+
return this.i.is ? this.i.is.top : NaN;
|
|
563
563
|
},
|
|
564
564
|
set: function (v) {
|
|
565
565
|
this.ensureValueRowMargin();
|
|
566
|
-
this.i.
|
|
567
|
-
this._a("valueRowMarginTop", this.i.
|
|
568
|
-
this.i.
|
|
566
|
+
this.i.is.top = +v;
|
|
567
|
+
this._a("valueRowMarginTop", this.i.is.top);
|
|
568
|
+
this.i.is = this.i.is;
|
|
569
569
|
},
|
|
570
570
|
enumerable: true,
|
|
571
571
|
configurable: true
|
|
572
572
|
});
|
|
573
573
|
IgcDataLegendComponent.prototype.ensureValueRowMargin = function () {
|
|
574
|
-
if (this.i.
|
|
574
|
+
if (this.i.is) {
|
|
575
575
|
return;
|
|
576
576
|
}
|
|
577
|
-
this.i.
|
|
577
|
+
this.i.is = new Thickness(2);
|
|
578
578
|
};
|
|
579
579
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueRowVisible", {
|
|
580
580
|
/**
|
|
581
581
|
* Gets or sets whether to show series rows.
|
|
582
582
|
*/
|
|
583
583
|
get: function () {
|
|
584
|
-
return this.i.
|
|
584
|
+
return this.i.b5;
|
|
585
585
|
},
|
|
586
586
|
set: function (v) {
|
|
587
|
-
this.i.
|
|
588
|
-
this._a("valueRowVisible", this.i.
|
|
587
|
+
this.i.b5 = ensureBool(v);
|
|
588
|
+
this._a("valueRowVisible", this.i.b5);
|
|
589
589
|
},
|
|
590
590
|
enumerable: true,
|
|
591
591
|
configurable: true
|
|
@@ -595,10 +595,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
595
595
|
* Gets or sets text displayed when data column is missing a value, e.g. "no data"
|
|
596
596
|
*/
|
|
597
597
|
get: function () {
|
|
598
|
-
return this.i.
|
|
598
|
+
return this.i.ff;
|
|
599
599
|
},
|
|
600
600
|
set: function (v) {
|
|
601
|
-
this.i.
|
|
601
|
+
this.i.ff = v;
|
|
602
602
|
},
|
|
603
603
|
enumerable: true,
|
|
604
604
|
configurable: true
|
|
@@ -608,83 +608,83 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
608
608
|
* Gets or sets whether to use series colors when displaying values in the legend
|
|
609
609
|
*/
|
|
610
610
|
get: function () {
|
|
611
|
-
return this.i.
|
|
611
|
+
return this.i.b6;
|
|
612
612
|
},
|
|
613
613
|
set: function (v) {
|
|
614
|
-
this.i.
|
|
615
|
-
this._a("valueTextUseSeriesColors", this.i.
|
|
614
|
+
this.i.b6 = ensureBool(v);
|
|
615
|
+
this._a("valueTextUseSeriesColors", this.i.b6);
|
|
616
616
|
},
|
|
617
617
|
enumerable: true,
|
|
618
618
|
configurable: true
|
|
619
619
|
});
|
|
620
620
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueTextMarginBottom", {
|
|
621
621
|
get: function () {
|
|
622
|
-
return this.i.
|
|
622
|
+
return this.i.it ? this.i.it.bottom : NaN;
|
|
623
623
|
},
|
|
624
624
|
set: function (v) {
|
|
625
625
|
this.ensureValueTextMargin();
|
|
626
|
-
this.i.
|
|
627
|
-
this._a("valueTextMarginBottom", this.i.
|
|
628
|
-
this.i.
|
|
626
|
+
this.i.it.bottom = +v;
|
|
627
|
+
this._a("valueTextMarginBottom", this.i.it.bottom);
|
|
628
|
+
this.i.it = this.i.it;
|
|
629
629
|
},
|
|
630
630
|
enumerable: true,
|
|
631
631
|
configurable: true
|
|
632
632
|
});
|
|
633
633
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueTextMarginLeft", {
|
|
634
634
|
get: function () {
|
|
635
|
-
return this.i.
|
|
635
|
+
return this.i.it ? this.i.it.left : NaN;
|
|
636
636
|
},
|
|
637
637
|
set: function (v) {
|
|
638
638
|
this.ensureValueTextMargin();
|
|
639
|
-
this.i.
|
|
640
|
-
this._a("valueTextMarginLeft", this.i.
|
|
641
|
-
this.i.
|
|
639
|
+
this.i.it.left = +v;
|
|
640
|
+
this._a("valueTextMarginLeft", this.i.it.left);
|
|
641
|
+
this.i.it = this.i.it;
|
|
642
642
|
},
|
|
643
643
|
enumerable: true,
|
|
644
644
|
configurable: true
|
|
645
645
|
});
|
|
646
646
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueTextMarginRight", {
|
|
647
647
|
get: function () {
|
|
648
|
-
return this.i.
|
|
648
|
+
return this.i.it ? this.i.it.right : NaN;
|
|
649
649
|
},
|
|
650
650
|
set: function (v) {
|
|
651
651
|
this.ensureValueTextMargin();
|
|
652
|
-
this.i.
|
|
653
|
-
this._a("valueTextMarginRight", this.i.
|
|
654
|
-
this.i.
|
|
652
|
+
this.i.it.right = +v;
|
|
653
|
+
this._a("valueTextMarginRight", this.i.it.right);
|
|
654
|
+
this.i.it = this.i.it;
|
|
655
655
|
},
|
|
656
656
|
enumerable: true,
|
|
657
657
|
configurable: true
|
|
658
658
|
});
|
|
659
659
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueTextMarginTop", {
|
|
660
660
|
get: function () {
|
|
661
|
-
return this.i.
|
|
661
|
+
return this.i.it ? this.i.it.top : NaN;
|
|
662
662
|
},
|
|
663
663
|
set: function (v) {
|
|
664
664
|
this.ensureValueTextMargin();
|
|
665
|
-
this.i.
|
|
666
|
-
this._a("valueTextMarginTop", this.i.
|
|
667
|
-
this.i.
|
|
665
|
+
this.i.it.top = +v;
|
|
666
|
+
this._a("valueTextMarginTop", this.i.it.top);
|
|
667
|
+
this.i.it = this.i.it;
|
|
668
668
|
},
|
|
669
669
|
enumerable: true,
|
|
670
670
|
configurable: true
|
|
671
671
|
});
|
|
672
672
|
IgcDataLegendComponent.prototype.ensureValueTextMargin = function () {
|
|
673
|
-
if (this.i.
|
|
673
|
+
if (this.i.it) {
|
|
674
674
|
return;
|
|
675
675
|
}
|
|
676
|
-
this.i.
|
|
676
|
+
this.i.it = new Thickness(2);
|
|
677
677
|
};
|
|
678
678
|
Object.defineProperty(IgcDataLegendComponent.prototype, "valueTextColor", {
|
|
679
679
|
/**
|
|
680
680
|
* Gets or sets the units text color.
|
|
681
681
|
*/
|
|
682
682
|
get: function () {
|
|
683
|
-
return brushToString(this.i.
|
|
683
|
+
return brushToString(this.i.ia);
|
|
684
684
|
},
|
|
685
685
|
set: function (v) {
|
|
686
|
-
this.i.
|
|
687
|
-
this._a("valueTextColor", brushToString(this.i.
|
|
686
|
+
this.i.ia = stringToBrush(v);
|
|
687
|
+
this._a("valueTextColor", brushToString(this.i.ia));
|
|
688
688
|
},
|
|
689
689
|
enumerable: true,
|
|
690
690
|
configurable: true
|
|
@@ -713,10 +713,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
713
713
|
* Gets or sets the format string for header text displayed in the data legend.
|
|
714
714
|
*/
|
|
715
715
|
get: function () {
|
|
716
|
-
return this.i.
|
|
716
|
+
return this.i.dd;
|
|
717
717
|
},
|
|
718
718
|
set: function (v) {
|
|
719
|
-
this.i.
|
|
719
|
+
this.i.dd = v;
|
|
720
720
|
},
|
|
721
721
|
enumerable: true,
|
|
722
722
|
configurable: true
|
|
@@ -744,10 +744,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
744
744
|
* This property is ignored when setting HeaderFormatSpecifiers or HeaderFormatString properties
|
|
745
745
|
*/
|
|
746
746
|
get: function () {
|
|
747
|
-
return this.i.
|
|
747
|
+
return this.i.c9;
|
|
748
748
|
},
|
|
749
749
|
set: function (v) {
|
|
750
|
-
this.i.
|
|
750
|
+
this.i.c9 = v;
|
|
751
751
|
},
|
|
752
752
|
enumerable: true,
|
|
753
753
|
configurable: true
|
|
@@ -787,10 +787,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
787
787
|
* Gets or sets the HeaderText for the data legend.
|
|
788
788
|
*/
|
|
789
789
|
get: function () {
|
|
790
|
-
return this.i.
|
|
790
|
+
return this.i.di;
|
|
791
791
|
},
|
|
792
792
|
set: function (v) {
|
|
793
|
-
this.i.
|
|
793
|
+
this.i.di = v;
|
|
794
794
|
},
|
|
795
795
|
enumerable: true,
|
|
796
796
|
configurable: true
|
|
@@ -800,141 +800,141 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
800
800
|
* Gets or sets the header text color.
|
|
801
801
|
*/
|
|
802
802
|
get: function () {
|
|
803
|
-
return brushToString(this.i.
|
|
803
|
+
return brushToString(this.i.h1);
|
|
804
804
|
},
|
|
805
805
|
set: function (v) {
|
|
806
|
-
this.i.
|
|
807
|
-
this._a("headerTextColor", brushToString(this.i.
|
|
806
|
+
this.i.h1 = stringToBrush(v);
|
|
807
|
+
this._a("headerTextColor", brushToString(this.i.h1));
|
|
808
808
|
},
|
|
809
809
|
enumerable: true,
|
|
810
810
|
configurable: true
|
|
811
811
|
});
|
|
812
812
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerTextMarginBottom", {
|
|
813
813
|
get: function () {
|
|
814
|
-
return this.i.
|
|
814
|
+
return this.i.ik ? this.i.ik.bottom : NaN;
|
|
815
815
|
},
|
|
816
816
|
set: function (v) {
|
|
817
817
|
this.ensureHeaderTextMargin();
|
|
818
|
-
this.i.
|
|
819
|
-
this._a("headerTextMarginBottom", this.i.
|
|
820
|
-
this.i.
|
|
818
|
+
this.i.ik.bottom = +v;
|
|
819
|
+
this._a("headerTextMarginBottom", this.i.ik.bottom);
|
|
820
|
+
this.i.ik = this.i.ik;
|
|
821
821
|
},
|
|
822
822
|
enumerable: true,
|
|
823
823
|
configurable: true
|
|
824
824
|
});
|
|
825
825
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerTextMarginLeft", {
|
|
826
826
|
get: function () {
|
|
827
|
-
return this.i.
|
|
827
|
+
return this.i.ik ? this.i.ik.left : NaN;
|
|
828
828
|
},
|
|
829
829
|
set: function (v) {
|
|
830
830
|
this.ensureHeaderTextMargin();
|
|
831
|
-
this.i.
|
|
832
|
-
this._a("headerTextMarginLeft", this.i.
|
|
833
|
-
this.i.
|
|
831
|
+
this.i.ik.left = +v;
|
|
832
|
+
this._a("headerTextMarginLeft", this.i.ik.left);
|
|
833
|
+
this.i.ik = this.i.ik;
|
|
834
834
|
},
|
|
835
835
|
enumerable: true,
|
|
836
836
|
configurable: true
|
|
837
837
|
});
|
|
838
838
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerTextMarginRight", {
|
|
839
839
|
get: function () {
|
|
840
|
-
return this.i.
|
|
840
|
+
return this.i.ik ? this.i.ik.right : NaN;
|
|
841
841
|
},
|
|
842
842
|
set: function (v) {
|
|
843
843
|
this.ensureHeaderTextMargin();
|
|
844
|
-
this.i.
|
|
845
|
-
this._a("headerTextMarginRight", this.i.
|
|
846
|
-
this.i.
|
|
844
|
+
this.i.ik.right = +v;
|
|
845
|
+
this._a("headerTextMarginRight", this.i.ik.right);
|
|
846
|
+
this.i.ik = this.i.ik;
|
|
847
847
|
},
|
|
848
848
|
enumerable: true,
|
|
849
849
|
configurable: true
|
|
850
850
|
});
|
|
851
851
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerTextMarginTop", {
|
|
852
852
|
get: function () {
|
|
853
|
-
return this.i.
|
|
853
|
+
return this.i.ik ? this.i.ik.top : NaN;
|
|
854
854
|
},
|
|
855
855
|
set: function (v) {
|
|
856
856
|
this.ensureHeaderTextMargin();
|
|
857
|
-
this.i.
|
|
858
|
-
this._a("headerTextMarginTop", this.i.
|
|
859
|
-
this.i.
|
|
857
|
+
this.i.ik.top = +v;
|
|
858
|
+
this._a("headerTextMarginTop", this.i.ik.top);
|
|
859
|
+
this.i.ik = this.i.ik;
|
|
860
860
|
},
|
|
861
861
|
enumerable: true,
|
|
862
862
|
configurable: true
|
|
863
863
|
});
|
|
864
864
|
IgcDataLegendComponent.prototype.ensureHeaderTextMargin = function () {
|
|
865
|
-
if (this.i.
|
|
865
|
+
if (this.i.ik) {
|
|
866
866
|
return;
|
|
867
867
|
}
|
|
868
|
-
this.i.
|
|
868
|
+
this.i.ik = new Thickness(2);
|
|
869
869
|
};
|
|
870
870
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerRowMarginBottom", {
|
|
871
871
|
get: function () {
|
|
872
|
-
return this.i.
|
|
872
|
+
return this.i.ij ? this.i.ij.bottom : NaN;
|
|
873
873
|
},
|
|
874
874
|
set: function (v) {
|
|
875
875
|
this.ensureHeaderRowMargin();
|
|
876
|
-
this.i.
|
|
877
|
-
this._a("headerRowMarginBottom", this.i.
|
|
878
|
-
this.i.
|
|
876
|
+
this.i.ij.bottom = +v;
|
|
877
|
+
this._a("headerRowMarginBottom", this.i.ij.bottom);
|
|
878
|
+
this.i.ij = this.i.ij;
|
|
879
879
|
},
|
|
880
880
|
enumerable: true,
|
|
881
881
|
configurable: true
|
|
882
882
|
});
|
|
883
883
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerRowMarginLeft", {
|
|
884
884
|
get: function () {
|
|
885
|
-
return this.i.
|
|
885
|
+
return this.i.ij ? this.i.ij.left : NaN;
|
|
886
886
|
},
|
|
887
887
|
set: function (v) {
|
|
888
888
|
this.ensureHeaderRowMargin();
|
|
889
|
-
this.i.
|
|
890
|
-
this._a("headerRowMarginLeft", this.i.
|
|
891
|
-
this.i.
|
|
889
|
+
this.i.ij.left = +v;
|
|
890
|
+
this._a("headerRowMarginLeft", this.i.ij.left);
|
|
891
|
+
this.i.ij = this.i.ij;
|
|
892
892
|
},
|
|
893
893
|
enumerable: true,
|
|
894
894
|
configurable: true
|
|
895
895
|
});
|
|
896
896
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerRowMarginRight", {
|
|
897
897
|
get: function () {
|
|
898
|
-
return this.i.
|
|
898
|
+
return this.i.ij ? this.i.ij.right : NaN;
|
|
899
899
|
},
|
|
900
900
|
set: function (v) {
|
|
901
901
|
this.ensureHeaderRowMargin();
|
|
902
|
-
this.i.
|
|
903
|
-
this._a("headerRowMarginRight", this.i.
|
|
904
|
-
this.i.
|
|
902
|
+
this.i.ij.right = +v;
|
|
903
|
+
this._a("headerRowMarginRight", this.i.ij.right);
|
|
904
|
+
this.i.ij = this.i.ij;
|
|
905
905
|
},
|
|
906
906
|
enumerable: true,
|
|
907
907
|
configurable: true
|
|
908
908
|
});
|
|
909
909
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerRowMarginTop", {
|
|
910
910
|
get: function () {
|
|
911
|
-
return this.i.
|
|
911
|
+
return this.i.ij ? this.i.ij.top : NaN;
|
|
912
912
|
},
|
|
913
913
|
set: function (v) {
|
|
914
914
|
this.ensureHeaderRowMargin();
|
|
915
|
-
this.i.
|
|
916
|
-
this._a("headerRowMarginTop", this.i.
|
|
917
|
-
this.i.
|
|
915
|
+
this.i.ij.top = +v;
|
|
916
|
+
this._a("headerRowMarginTop", this.i.ij.top);
|
|
917
|
+
this.i.ij = this.i.ij;
|
|
918
918
|
},
|
|
919
919
|
enumerable: true,
|
|
920
920
|
configurable: true
|
|
921
921
|
});
|
|
922
922
|
IgcDataLegendComponent.prototype.ensureHeaderRowMargin = function () {
|
|
923
|
-
if (this.i.
|
|
923
|
+
if (this.i.ij) {
|
|
924
924
|
return;
|
|
925
925
|
}
|
|
926
|
-
this.i.
|
|
926
|
+
this.i.ij = new Thickness(2);
|
|
927
927
|
};
|
|
928
928
|
Object.defineProperty(IgcDataLegendComponent.prototype, "headerRowVisible", {
|
|
929
929
|
/**
|
|
930
930
|
* Gets or sets whether to show Header row.
|
|
931
931
|
*/
|
|
932
932
|
get: function () {
|
|
933
|
-
return this.i.
|
|
933
|
+
return this.i.b0;
|
|
934
934
|
},
|
|
935
935
|
set: function (v) {
|
|
936
|
-
this.i.
|
|
937
|
-
this._a("headerRowVisible", this.i.
|
|
936
|
+
this.i.b0 = ensureBool(v);
|
|
937
|
+
this._a("headerRowVisible", this.i.b0);
|
|
938
938
|
},
|
|
939
939
|
enumerable: true,
|
|
940
940
|
configurable: true
|
|
@@ -963,11 +963,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
963
963
|
* Gets or sets the summary text color.
|
|
964
964
|
*/
|
|
965
965
|
get: function () {
|
|
966
|
-
return brushToString(this.i.
|
|
966
|
+
return brushToString(this.i.h5);
|
|
967
967
|
},
|
|
968
968
|
set: function (v) {
|
|
969
|
-
this.i.
|
|
970
|
-
this._a("summaryTitleTextColor", brushToString(this.i.
|
|
969
|
+
this.i.h5 = stringToBrush(v);
|
|
970
|
+
this._a("summaryTitleTextColor", brushToString(this.i.h5));
|
|
971
971
|
},
|
|
972
972
|
enumerable: true,
|
|
973
973
|
configurable: true
|
|
@@ -1010,140 +1010,140 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1010
1010
|
* Gets or sets the SummaryTitleText for the data legend.
|
|
1011
1011
|
*/
|
|
1012
1012
|
get: function () {
|
|
1013
|
-
return this.i.
|
|
1013
|
+
return this.i.d9;
|
|
1014
1014
|
},
|
|
1015
1015
|
set: function (v) {
|
|
1016
|
-
this.i.
|
|
1016
|
+
this.i.d9 = v;
|
|
1017
1017
|
},
|
|
1018
1018
|
enumerable: true,
|
|
1019
1019
|
configurable: true
|
|
1020
1020
|
});
|
|
1021
1021
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryTitleTextMarginBottom", {
|
|
1022
1022
|
get: function () {
|
|
1023
|
-
return this.i.
|
|
1023
|
+
return this.i.io ? this.i.io.bottom : NaN;
|
|
1024
1024
|
},
|
|
1025
1025
|
set: function (v) {
|
|
1026
1026
|
this.ensureSummaryTitleTextMargin();
|
|
1027
|
-
this.i.
|
|
1028
|
-
this._a("summaryTitleTextMarginBottom", this.i.
|
|
1029
|
-
this.i.
|
|
1027
|
+
this.i.io.bottom = +v;
|
|
1028
|
+
this._a("summaryTitleTextMarginBottom", this.i.io.bottom);
|
|
1029
|
+
this.i.io = this.i.io;
|
|
1030
1030
|
},
|
|
1031
1031
|
enumerable: true,
|
|
1032
1032
|
configurable: true
|
|
1033
1033
|
});
|
|
1034
1034
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryTitleTextMarginLeft", {
|
|
1035
1035
|
get: function () {
|
|
1036
|
-
return this.i.
|
|
1036
|
+
return this.i.io ? this.i.io.left : NaN;
|
|
1037
1037
|
},
|
|
1038
1038
|
set: function (v) {
|
|
1039
1039
|
this.ensureSummaryTitleTextMargin();
|
|
1040
|
-
this.i.
|
|
1041
|
-
this._a("summaryTitleTextMarginLeft", this.i.
|
|
1042
|
-
this.i.
|
|
1040
|
+
this.i.io.left = +v;
|
|
1041
|
+
this._a("summaryTitleTextMarginLeft", this.i.io.left);
|
|
1042
|
+
this.i.io = this.i.io;
|
|
1043
1043
|
},
|
|
1044
1044
|
enumerable: true,
|
|
1045
1045
|
configurable: true
|
|
1046
1046
|
});
|
|
1047
1047
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryTitleTextMarginRight", {
|
|
1048
1048
|
get: function () {
|
|
1049
|
-
return this.i.
|
|
1049
|
+
return this.i.io ? this.i.io.right : NaN;
|
|
1050
1050
|
},
|
|
1051
1051
|
set: function (v) {
|
|
1052
1052
|
this.ensureSummaryTitleTextMargin();
|
|
1053
|
-
this.i.
|
|
1054
|
-
this._a("summaryTitleTextMarginRight", this.i.
|
|
1055
|
-
this.i.
|
|
1053
|
+
this.i.io.right = +v;
|
|
1054
|
+
this._a("summaryTitleTextMarginRight", this.i.io.right);
|
|
1055
|
+
this.i.io = this.i.io;
|
|
1056
1056
|
},
|
|
1057
1057
|
enumerable: true,
|
|
1058
1058
|
configurable: true
|
|
1059
1059
|
});
|
|
1060
1060
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryTitleTextMarginTop", {
|
|
1061
1061
|
get: function () {
|
|
1062
|
-
return this.i.
|
|
1062
|
+
return this.i.io ? this.i.io.top : NaN;
|
|
1063
1063
|
},
|
|
1064
1064
|
set: function (v) {
|
|
1065
1065
|
this.ensureSummaryTitleTextMargin();
|
|
1066
|
-
this.i.
|
|
1067
|
-
this._a("summaryTitleTextMarginTop", this.i.
|
|
1068
|
-
this.i.
|
|
1066
|
+
this.i.io.top = +v;
|
|
1067
|
+
this._a("summaryTitleTextMarginTop", this.i.io.top);
|
|
1068
|
+
this.i.io = this.i.io;
|
|
1069
1069
|
},
|
|
1070
1070
|
enumerable: true,
|
|
1071
1071
|
configurable: true
|
|
1072
1072
|
});
|
|
1073
1073
|
IgcDataLegendComponent.prototype.ensureSummaryTitleTextMargin = function () {
|
|
1074
|
-
if (this.i.
|
|
1074
|
+
if (this.i.io) {
|
|
1075
1075
|
return;
|
|
1076
1076
|
}
|
|
1077
|
-
this.i.
|
|
1077
|
+
this.i.io = new Thickness(2);
|
|
1078
1078
|
};
|
|
1079
1079
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryRowMarginBottom", {
|
|
1080
1080
|
get: function () {
|
|
1081
|
-
return this.i.
|
|
1081
|
+
return this.i.im ? this.i.im.bottom : NaN;
|
|
1082
1082
|
},
|
|
1083
1083
|
set: function (v) {
|
|
1084
1084
|
this.ensureSummaryRowMargin();
|
|
1085
|
-
this.i.
|
|
1086
|
-
this._a("summaryRowMarginBottom", this.i.
|
|
1087
|
-
this.i.
|
|
1085
|
+
this.i.im.bottom = +v;
|
|
1086
|
+
this._a("summaryRowMarginBottom", this.i.im.bottom);
|
|
1087
|
+
this.i.im = this.i.im;
|
|
1088
1088
|
},
|
|
1089
1089
|
enumerable: true,
|
|
1090
1090
|
configurable: true
|
|
1091
1091
|
});
|
|
1092
1092
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryRowMarginLeft", {
|
|
1093
1093
|
get: function () {
|
|
1094
|
-
return this.i.
|
|
1094
|
+
return this.i.im ? this.i.im.left : NaN;
|
|
1095
1095
|
},
|
|
1096
1096
|
set: function (v) {
|
|
1097
1097
|
this.ensureSummaryRowMargin();
|
|
1098
|
-
this.i.
|
|
1099
|
-
this._a("summaryRowMarginLeft", this.i.
|
|
1100
|
-
this.i.
|
|
1098
|
+
this.i.im.left = +v;
|
|
1099
|
+
this._a("summaryRowMarginLeft", this.i.im.left);
|
|
1100
|
+
this.i.im = this.i.im;
|
|
1101
1101
|
},
|
|
1102
1102
|
enumerable: true,
|
|
1103
1103
|
configurable: true
|
|
1104
1104
|
});
|
|
1105
1105
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryRowMarginRight", {
|
|
1106
1106
|
get: function () {
|
|
1107
|
-
return this.i.
|
|
1107
|
+
return this.i.im ? this.i.im.right : NaN;
|
|
1108
1108
|
},
|
|
1109
1109
|
set: function (v) {
|
|
1110
1110
|
this.ensureSummaryRowMargin();
|
|
1111
|
-
this.i.
|
|
1112
|
-
this._a("summaryRowMarginRight", this.i.
|
|
1113
|
-
this.i.
|
|
1111
|
+
this.i.im.right = +v;
|
|
1112
|
+
this._a("summaryRowMarginRight", this.i.im.right);
|
|
1113
|
+
this.i.im = this.i.im;
|
|
1114
1114
|
},
|
|
1115
1115
|
enumerable: true,
|
|
1116
1116
|
configurable: true
|
|
1117
1117
|
});
|
|
1118
1118
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryRowMarginTop", {
|
|
1119
1119
|
get: function () {
|
|
1120
|
-
return this.i.
|
|
1120
|
+
return this.i.im ? this.i.im.top : NaN;
|
|
1121
1121
|
},
|
|
1122
1122
|
set: function (v) {
|
|
1123
1123
|
this.ensureSummaryRowMargin();
|
|
1124
|
-
this.i.
|
|
1125
|
-
this._a("summaryRowMarginTop", this.i.
|
|
1126
|
-
this.i.
|
|
1124
|
+
this.i.im.top = +v;
|
|
1125
|
+
this._a("summaryRowMarginTop", this.i.im.top);
|
|
1126
|
+
this.i.im = this.i.im;
|
|
1127
1127
|
},
|
|
1128
1128
|
enumerable: true,
|
|
1129
1129
|
configurable: true
|
|
1130
1130
|
});
|
|
1131
1131
|
IgcDataLegendComponent.prototype.ensureSummaryRowMargin = function () {
|
|
1132
|
-
if (this.i.
|
|
1132
|
+
if (this.i.im) {
|
|
1133
1133
|
return;
|
|
1134
1134
|
}
|
|
1135
|
-
this.i.
|
|
1135
|
+
this.i.im = new Thickness(2);
|
|
1136
1136
|
};
|
|
1137
1137
|
Object.defineProperty(IgcDataLegendComponent.prototype, "summaryValueTextColor", {
|
|
1138
1138
|
/**
|
|
1139
1139
|
* Gets or sets the units text color.
|
|
1140
1140
|
*/
|
|
1141
1141
|
get: function () {
|
|
1142
|
-
return brushToString(this.i.
|
|
1142
|
+
return brushToString(this.i.h7);
|
|
1143
1143
|
},
|
|
1144
1144
|
set: function (v) {
|
|
1145
|
-
this.i.
|
|
1146
|
-
this._a("summaryValueTextColor", brushToString(this.i.
|
|
1145
|
+
this.i.h7 = stringToBrush(v);
|
|
1146
|
+
this._a("summaryValueTextColor", brushToString(this.i.h7));
|
|
1147
1147
|
},
|
|
1148
1148
|
enumerable: true,
|
|
1149
1149
|
configurable: true
|
|
@@ -1172,10 +1172,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1172
1172
|
* Gets or sets the units text for the data legend.
|
|
1173
1173
|
*/
|
|
1174
1174
|
get: function () {
|
|
1175
|
-
return this.i.
|
|
1175
|
+
return this.i.d4;
|
|
1176
1176
|
},
|
|
1177
1177
|
set: function (v) {
|
|
1178
|
-
this.i.
|
|
1178
|
+
this.i.d4 = v;
|
|
1179
1179
|
},
|
|
1180
1180
|
enumerable: true,
|
|
1181
1181
|
configurable: true
|
|
@@ -1185,11 +1185,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1185
1185
|
* Gets or sets the units text color.
|
|
1186
1186
|
*/
|
|
1187
1187
|
get: function () {
|
|
1188
|
-
return brushToString(this.i.
|
|
1188
|
+
return brushToString(this.i.h4);
|
|
1189
1189
|
},
|
|
1190
1190
|
set: function (v) {
|
|
1191
|
-
this.i.
|
|
1192
|
-
this._a("summaryLabelTextColor", brushToString(this.i.
|
|
1191
|
+
this.i.h4 = stringToBrush(v);
|
|
1192
|
+
this._a("summaryLabelTextColor", brushToString(this.i.h4));
|
|
1193
1193
|
},
|
|
1194
1194
|
enumerable: true,
|
|
1195
1195
|
configurable: true
|
|
@@ -1218,10 +1218,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1218
1218
|
* Gets or sets the units text for the data legend.
|
|
1219
1219
|
*/
|
|
1220
1220
|
get: function () {
|
|
1221
|
-
return this.i.
|
|
1221
|
+
return this.i.ef;
|
|
1222
1222
|
},
|
|
1223
1223
|
set: function (v) {
|
|
1224
|
-
this.i.
|
|
1224
|
+
this.i.ef = v;
|
|
1225
1225
|
},
|
|
1226
1226
|
enumerable: true,
|
|
1227
1227
|
configurable: true
|
|
@@ -1231,11 +1231,11 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1231
1231
|
* Gets or sets the units text color.
|
|
1232
1232
|
*/
|
|
1233
1233
|
get: function () {
|
|
1234
|
-
return brushToString(this.i.
|
|
1234
|
+
return brushToString(this.i.h6);
|
|
1235
1235
|
},
|
|
1236
1236
|
set: function (v) {
|
|
1237
|
-
this.i.
|
|
1238
|
-
this._a("summaryUnitsTextColor", brushToString(this.i.
|
|
1237
|
+
this.i.h6 = stringToBrush(v);
|
|
1238
|
+
this._a("summaryUnitsTextColor", brushToString(this.i.h6));
|
|
1239
1239
|
},
|
|
1240
1240
|
enumerable: true,
|
|
1241
1241
|
configurable: true
|
|
@@ -1261,61 +1261,61 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1261
1261
|
});
|
|
1262
1262
|
Object.defineProperty(IgcDataLegendComponent.prototype, "badgeMarginBottom", {
|
|
1263
1263
|
get: function () {
|
|
1264
|
-
return this.i.
|
|
1264
|
+
return this.i.ii ? this.i.ii.bottom : NaN;
|
|
1265
1265
|
},
|
|
1266
1266
|
set: function (v) {
|
|
1267
1267
|
this.ensureBadgeMargin();
|
|
1268
|
-
this.i.
|
|
1269
|
-
this._a("badgeMarginBottom", this.i.
|
|
1270
|
-
this.i.
|
|
1268
|
+
this.i.ii.bottom = +v;
|
|
1269
|
+
this._a("badgeMarginBottom", this.i.ii.bottom);
|
|
1270
|
+
this.i.ii = this.i.ii;
|
|
1271
1271
|
},
|
|
1272
1272
|
enumerable: true,
|
|
1273
1273
|
configurable: true
|
|
1274
1274
|
});
|
|
1275
1275
|
Object.defineProperty(IgcDataLegendComponent.prototype, "badgeMarginLeft", {
|
|
1276
1276
|
get: function () {
|
|
1277
|
-
return this.i.
|
|
1277
|
+
return this.i.ii ? this.i.ii.left : NaN;
|
|
1278
1278
|
},
|
|
1279
1279
|
set: function (v) {
|
|
1280
1280
|
this.ensureBadgeMargin();
|
|
1281
|
-
this.i.
|
|
1282
|
-
this._a("badgeMarginLeft", this.i.
|
|
1283
|
-
this.i.
|
|
1281
|
+
this.i.ii.left = +v;
|
|
1282
|
+
this._a("badgeMarginLeft", this.i.ii.left);
|
|
1283
|
+
this.i.ii = this.i.ii;
|
|
1284
1284
|
},
|
|
1285
1285
|
enumerable: true,
|
|
1286
1286
|
configurable: true
|
|
1287
1287
|
});
|
|
1288
1288
|
Object.defineProperty(IgcDataLegendComponent.prototype, "badgeMarginRight", {
|
|
1289
1289
|
get: function () {
|
|
1290
|
-
return this.i.
|
|
1290
|
+
return this.i.ii ? this.i.ii.right : NaN;
|
|
1291
1291
|
},
|
|
1292
1292
|
set: function (v) {
|
|
1293
1293
|
this.ensureBadgeMargin();
|
|
1294
|
-
this.i.
|
|
1295
|
-
this._a("badgeMarginRight", this.i.
|
|
1296
|
-
this.i.
|
|
1294
|
+
this.i.ii.right = +v;
|
|
1295
|
+
this._a("badgeMarginRight", this.i.ii.right);
|
|
1296
|
+
this.i.ii = this.i.ii;
|
|
1297
1297
|
},
|
|
1298
1298
|
enumerable: true,
|
|
1299
1299
|
configurable: true
|
|
1300
1300
|
});
|
|
1301
1301
|
Object.defineProperty(IgcDataLegendComponent.prototype, "badgeMarginTop", {
|
|
1302
1302
|
get: function () {
|
|
1303
|
-
return this.i.
|
|
1303
|
+
return this.i.ii ? this.i.ii.top : NaN;
|
|
1304
1304
|
},
|
|
1305
1305
|
set: function (v) {
|
|
1306
1306
|
this.ensureBadgeMargin();
|
|
1307
|
-
this.i.
|
|
1308
|
-
this._a("badgeMarginTop", this.i.
|
|
1309
|
-
this.i.
|
|
1307
|
+
this.i.ii.top = +v;
|
|
1308
|
+
this._a("badgeMarginTop", this.i.ii.top);
|
|
1309
|
+
this.i.ii = this.i.ii;
|
|
1310
1310
|
},
|
|
1311
1311
|
enumerable: true,
|
|
1312
1312
|
configurable: true
|
|
1313
1313
|
});
|
|
1314
1314
|
IgcDataLegendComponent.prototype.ensureBadgeMargin = function () {
|
|
1315
|
-
if (this.i.
|
|
1315
|
+
if (this.i.ii) {
|
|
1316
1316
|
return;
|
|
1317
1317
|
}
|
|
1318
|
-
this.i.
|
|
1318
|
+
this.i.ii = new Thickness(2);
|
|
1319
1319
|
};
|
|
1320
1320
|
Object.defineProperty(IgcDataLegendComponent.prototype, "badgeShape", {
|
|
1321
1321
|
/**
|
|
@@ -1378,10 +1378,10 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1378
1378
|
* Gets or sets the units text for the data legend.
|
|
1379
1379
|
*/
|
|
1380
1380
|
get: function () {
|
|
1381
|
-
return this.i.
|
|
1381
|
+
return this.i.es;
|
|
1382
1382
|
},
|
|
1383
1383
|
set: function (v) {
|
|
1384
|
-
this.i.
|
|
1384
|
+
this.i.es = v;
|
|
1385
1385
|
},
|
|
1386
1386
|
enumerable: true,
|
|
1387
1387
|
configurable: true
|
|
@@ -1391,72 +1391,72 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1391
1391
|
* Gets or sets the units text color.
|
|
1392
1392
|
*/
|
|
1393
1393
|
get: function () {
|
|
1394
|
-
return brushToString(this.i.
|
|
1394
|
+
return brushToString(this.i.h9);
|
|
1395
1395
|
},
|
|
1396
1396
|
set: function (v) {
|
|
1397
|
-
this.i.
|
|
1398
|
-
this._a("unitsTextColor", brushToString(this.i.
|
|
1397
|
+
this.i.h9 = stringToBrush(v);
|
|
1398
|
+
this._a("unitsTextColor", brushToString(this.i.h9));
|
|
1399
1399
|
},
|
|
1400
1400
|
enumerable: true,
|
|
1401
1401
|
configurable: true
|
|
1402
1402
|
});
|
|
1403
1403
|
Object.defineProperty(IgcDataLegendComponent.prototype, "unitsTextMarginBottom", {
|
|
1404
1404
|
get: function () {
|
|
1405
|
-
return this.i.
|
|
1405
|
+
return this.i.iq ? this.i.iq.bottom : NaN;
|
|
1406
1406
|
},
|
|
1407
1407
|
set: function (v) {
|
|
1408
1408
|
this.ensureUnitsTextMargin();
|
|
1409
|
-
this.i.
|
|
1410
|
-
this._a("unitsTextMarginBottom", this.i.
|
|
1411
|
-
this.i.
|
|
1409
|
+
this.i.iq.bottom = +v;
|
|
1410
|
+
this._a("unitsTextMarginBottom", this.i.iq.bottom);
|
|
1411
|
+
this.i.iq = this.i.iq;
|
|
1412
1412
|
},
|
|
1413
1413
|
enumerable: true,
|
|
1414
1414
|
configurable: true
|
|
1415
1415
|
});
|
|
1416
1416
|
Object.defineProperty(IgcDataLegendComponent.prototype, "unitsTextMarginLeft", {
|
|
1417
1417
|
get: function () {
|
|
1418
|
-
return this.i.
|
|
1418
|
+
return this.i.iq ? this.i.iq.left : NaN;
|
|
1419
1419
|
},
|
|
1420
1420
|
set: function (v) {
|
|
1421
1421
|
this.ensureUnitsTextMargin();
|
|
1422
|
-
this.i.
|
|
1423
|
-
this._a("unitsTextMarginLeft", this.i.
|
|
1424
|
-
this.i.
|
|
1422
|
+
this.i.iq.left = +v;
|
|
1423
|
+
this._a("unitsTextMarginLeft", this.i.iq.left);
|
|
1424
|
+
this.i.iq = this.i.iq;
|
|
1425
1425
|
},
|
|
1426
1426
|
enumerable: true,
|
|
1427
1427
|
configurable: true
|
|
1428
1428
|
});
|
|
1429
1429
|
Object.defineProperty(IgcDataLegendComponent.prototype, "unitsTextMarginRight", {
|
|
1430
1430
|
get: function () {
|
|
1431
|
-
return this.i.
|
|
1431
|
+
return this.i.iq ? this.i.iq.right : NaN;
|
|
1432
1432
|
},
|
|
1433
1433
|
set: function (v) {
|
|
1434
1434
|
this.ensureUnitsTextMargin();
|
|
1435
|
-
this.i.
|
|
1436
|
-
this._a("unitsTextMarginRight", this.i.
|
|
1437
|
-
this.i.
|
|
1435
|
+
this.i.iq.right = +v;
|
|
1436
|
+
this._a("unitsTextMarginRight", this.i.iq.right);
|
|
1437
|
+
this.i.iq = this.i.iq;
|
|
1438
1438
|
},
|
|
1439
1439
|
enumerable: true,
|
|
1440
1440
|
configurable: true
|
|
1441
1441
|
});
|
|
1442
1442
|
Object.defineProperty(IgcDataLegendComponent.prototype, "unitsTextMarginTop", {
|
|
1443
1443
|
get: function () {
|
|
1444
|
-
return this.i.
|
|
1444
|
+
return this.i.iq ? this.i.iq.top : NaN;
|
|
1445
1445
|
},
|
|
1446
1446
|
set: function (v) {
|
|
1447
1447
|
this.ensureUnitsTextMargin();
|
|
1448
|
-
this.i.
|
|
1449
|
-
this._a("unitsTextMarginTop", this.i.
|
|
1450
|
-
this.i.
|
|
1448
|
+
this.i.iq.top = +v;
|
|
1449
|
+
this._a("unitsTextMarginTop", this.i.iq.top);
|
|
1450
|
+
this.i.iq = this.i.iq;
|
|
1451
1451
|
},
|
|
1452
1452
|
enumerable: true,
|
|
1453
1453
|
configurable: true
|
|
1454
1454
|
});
|
|
1455
1455
|
IgcDataLegendComponent.prototype.ensureUnitsTextMargin = function () {
|
|
1456
|
-
if (this.i.
|
|
1456
|
+
if (this.i.iq) {
|
|
1457
1457
|
return;
|
|
1458
1458
|
}
|
|
1459
|
-
this.i.
|
|
1459
|
+
this.i.iq = new Thickness(2);
|
|
1460
1460
|
};
|
|
1461
1461
|
Object.defineProperty(IgcDataLegendComponent.prototype, "unitsTextStyle", {
|
|
1462
1462
|
/**
|
|
@@ -1479,72 +1479,72 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1479
1479
|
});
|
|
1480
1480
|
Object.defineProperty(IgcDataLegendComponent.prototype, "titleTextMarginBottom", {
|
|
1481
1481
|
get: function () {
|
|
1482
|
-
return this.i.
|
|
1482
|
+
return this.i.ip ? this.i.ip.bottom : NaN;
|
|
1483
1483
|
},
|
|
1484
1484
|
set: function (v) {
|
|
1485
1485
|
this.ensureTitleTextMargin();
|
|
1486
|
-
this.i.
|
|
1487
|
-
this._a("titleTextMarginBottom", this.i.
|
|
1488
|
-
this.i.
|
|
1486
|
+
this.i.ip.bottom = +v;
|
|
1487
|
+
this._a("titleTextMarginBottom", this.i.ip.bottom);
|
|
1488
|
+
this.i.ip = this.i.ip;
|
|
1489
1489
|
},
|
|
1490
1490
|
enumerable: true,
|
|
1491
1491
|
configurable: true
|
|
1492
1492
|
});
|
|
1493
1493
|
Object.defineProperty(IgcDataLegendComponent.prototype, "titleTextMarginLeft", {
|
|
1494
1494
|
get: function () {
|
|
1495
|
-
return this.i.
|
|
1495
|
+
return this.i.ip ? this.i.ip.left : NaN;
|
|
1496
1496
|
},
|
|
1497
1497
|
set: function (v) {
|
|
1498
1498
|
this.ensureTitleTextMargin();
|
|
1499
|
-
this.i.
|
|
1500
|
-
this._a("titleTextMarginLeft", this.i.
|
|
1501
|
-
this.i.
|
|
1499
|
+
this.i.ip.left = +v;
|
|
1500
|
+
this._a("titleTextMarginLeft", this.i.ip.left);
|
|
1501
|
+
this.i.ip = this.i.ip;
|
|
1502
1502
|
},
|
|
1503
1503
|
enumerable: true,
|
|
1504
1504
|
configurable: true
|
|
1505
1505
|
});
|
|
1506
1506
|
Object.defineProperty(IgcDataLegendComponent.prototype, "titleTextMarginRight", {
|
|
1507
1507
|
get: function () {
|
|
1508
|
-
return this.i.
|
|
1508
|
+
return this.i.ip ? this.i.ip.right : NaN;
|
|
1509
1509
|
},
|
|
1510
1510
|
set: function (v) {
|
|
1511
1511
|
this.ensureTitleTextMargin();
|
|
1512
|
-
this.i.
|
|
1513
|
-
this._a("titleTextMarginRight", this.i.
|
|
1514
|
-
this.i.
|
|
1512
|
+
this.i.ip.right = +v;
|
|
1513
|
+
this._a("titleTextMarginRight", this.i.ip.right);
|
|
1514
|
+
this.i.ip = this.i.ip;
|
|
1515
1515
|
},
|
|
1516
1516
|
enumerable: true,
|
|
1517
1517
|
configurable: true
|
|
1518
1518
|
});
|
|
1519
1519
|
Object.defineProperty(IgcDataLegendComponent.prototype, "titleTextMarginTop", {
|
|
1520
1520
|
get: function () {
|
|
1521
|
-
return this.i.
|
|
1521
|
+
return this.i.ip ? this.i.ip.top : NaN;
|
|
1522
1522
|
},
|
|
1523
1523
|
set: function (v) {
|
|
1524
1524
|
this.ensureTitleTextMargin();
|
|
1525
|
-
this.i.
|
|
1526
|
-
this._a("titleTextMarginTop", this.i.
|
|
1527
|
-
this.i.
|
|
1525
|
+
this.i.ip.top = +v;
|
|
1526
|
+
this._a("titleTextMarginTop", this.i.ip.top);
|
|
1527
|
+
this.i.ip = this.i.ip;
|
|
1528
1528
|
},
|
|
1529
1529
|
enumerable: true,
|
|
1530
1530
|
configurable: true
|
|
1531
1531
|
});
|
|
1532
1532
|
IgcDataLegendComponent.prototype.ensureTitleTextMargin = function () {
|
|
1533
|
-
if (this.i.
|
|
1533
|
+
if (this.i.ip) {
|
|
1534
1534
|
return;
|
|
1535
1535
|
}
|
|
1536
|
-
this.i.
|
|
1536
|
+
this.i.ip = new Thickness(2);
|
|
1537
1537
|
};
|
|
1538
1538
|
Object.defineProperty(IgcDataLegendComponent.prototype, "titleTextColor", {
|
|
1539
1539
|
/**
|
|
1540
1540
|
* Gets or sets the display text color.
|
|
1541
1541
|
*/
|
|
1542
1542
|
get: function () {
|
|
1543
|
-
return brushToString(this.i.
|
|
1543
|
+
return brushToString(this.i.h8);
|
|
1544
1544
|
},
|
|
1545
1545
|
set: function (v) {
|
|
1546
|
-
this.i.
|
|
1547
|
-
this._a("titleTextColor", brushToString(this.i.
|
|
1546
|
+
this.i.h8 = stringToBrush(v);
|
|
1547
|
+
this._a("titleTextColor", brushToString(this.i.h8));
|
|
1548
1548
|
},
|
|
1549
1549
|
enumerable: true,
|
|
1550
1550
|
configurable: true
|
|
@@ -1587,72 +1587,72 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1587
1587
|
* Gets or sets the units text color.
|
|
1588
1588
|
*/
|
|
1589
1589
|
get: function () {
|
|
1590
|
-
return brushToString(this.i.
|
|
1590
|
+
return brushToString(this.i.h2);
|
|
1591
1591
|
},
|
|
1592
1592
|
set: function (v) {
|
|
1593
|
-
this.i.
|
|
1594
|
-
this._a("labelTextColor", brushToString(this.i.
|
|
1593
|
+
this.i.h2 = stringToBrush(v);
|
|
1594
|
+
this._a("labelTextColor", brushToString(this.i.h2));
|
|
1595
1595
|
},
|
|
1596
1596
|
enumerable: true,
|
|
1597
1597
|
configurable: true
|
|
1598
1598
|
});
|
|
1599
1599
|
Object.defineProperty(IgcDataLegendComponent.prototype, "labelTextMarginBottom", {
|
|
1600
1600
|
get: function () {
|
|
1601
|
-
return this.i.
|
|
1601
|
+
return this.i.il ? this.i.il.bottom : NaN;
|
|
1602
1602
|
},
|
|
1603
1603
|
set: function (v) {
|
|
1604
1604
|
this.ensureLabelTextMargin();
|
|
1605
|
-
this.i.
|
|
1606
|
-
this._a("labelTextMarginBottom", this.i.
|
|
1607
|
-
this.i.
|
|
1605
|
+
this.i.il.bottom = +v;
|
|
1606
|
+
this._a("labelTextMarginBottom", this.i.il.bottom);
|
|
1607
|
+
this.i.il = this.i.il;
|
|
1608
1608
|
},
|
|
1609
1609
|
enumerable: true,
|
|
1610
1610
|
configurable: true
|
|
1611
1611
|
});
|
|
1612
1612
|
Object.defineProperty(IgcDataLegendComponent.prototype, "labelTextMarginLeft", {
|
|
1613
1613
|
get: function () {
|
|
1614
|
-
return this.i.
|
|
1614
|
+
return this.i.il ? this.i.il.left : NaN;
|
|
1615
1615
|
},
|
|
1616
1616
|
set: function (v) {
|
|
1617
1617
|
this.ensureLabelTextMargin();
|
|
1618
|
-
this.i.
|
|
1619
|
-
this._a("labelTextMarginLeft", this.i.
|
|
1620
|
-
this.i.
|
|
1618
|
+
this.i.il.left = +v;
|
|
1619
|
+
this._a("labelTextMarginLeft", this.i.il.left);
|
|
1620
|
+
this.i.il = this.i.il;
|
|
1621
1621
|
},
|
|
1622
1622
|
enumerable: true,
|
|
1623
1623
|
configurable: true
|
|
1624
1624
|
});
|
|
1625
1625
|
Object.defineProperty(IgcDataLegendComponent.prototype, "labelTextMarginRight", {
|
|
1626
1626
|
get: function () {
|
|
1627
|
-
return this.i.
|
|
1627
|
+
return this.i.il ? this.i.il.right : NaN;
|
|
1628
1628
|
},
|
|
1629
1629
|
set: function (v) {
|
|
1630
1630
|
this.ensureLabelTextMargin();
|
|
1631
|
-
this.i.
|
|
1632
|
-
this._a("labelTextMarginRight", this.i.
|
|
1633
|
-
this.i.
|
|
1631
|
+
this.i.il.right = +v;
|
|
1632
|
+
this._a("labelTextMarginRight", this.i.il.right);
|
|
1633
|
+
this.i.il = this.i.il;
|
|
1634
1634
|
},
|
|
1635
1635
|
enumerable: true,
|
|
1636
1636
|
configurable: true
|
|
1637
1637
|
});
|
|
1638
1638
|
Object.defineProperty(IgcDataLegendComponent.prototype, "labelTextMarginTop", {
|
|
1639
1639
|
get: function () {
|
|
1640
|
-
return this.i.
|
|
1640
|
+
return this.i.il ? this.i.il.top : NaN;
|
|
1641
1641
|
},
|
|
1642
1642
|
set: function (v) {
|
|
1643
1643
|
this.ensureLabelTextMargin();
|
|
1644
|
-
this.i.
|
|
1645
|
-
this._a("labelTextMarginTop", this.i.
|
|
1646
|
-
this.i.
|
|
1644
|
+
this.i.il.top = +v;
|
|
1645
|
+
this._a("labelTextMarginTop", this.i.il.top);
|
|
1646
|
+
this.i.il = this.i.il;
|
|
1647
1647
|
},
|
|
1648
1648
|
enumerable: true,
|
|
1649
1649
|
configurable: true
|
|
1650
1650
|
});
|
|
1651
1651
|
IgcDataLegendComponent.prototype.ensureLabelTextMargin = function () {
|
|
1652
|
-
if (this.i.
|
|
1652
|
+
if (this.i.il) {
|
|
1653
1653
|
return;
|
|
1654
1654
|
}
|
|
1655
|
-
this.i.
|
|
1655
|
+
this.i.il = new Thickness(2);
|
|
1656
1656
|
};
|
|
1657
1657
|
Object.defineProperty(IgcDataLegendComponent.prototype, "labelTextStyle", {
|
|
1658
1658
|
/**
|
|
@@ -1782,15 +1782,15 @@ var IgcDataLegendComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1782
1782
|
this.i.flush();
|
|
1783
1783
|
};
|
|
1784
1784
|
IgcDataLegendComponent.prototype.getAbbreviatedNumber = function (number, mode, minDigits, maxDigits) {
|
|
1785
|
-
var iv = this.i.
|
|
1785
|
+
var iv = this.i.cr(number, (mode == null ? null : mode), minDigits, maxDigits);
|
|
1786
1786
|
return (iv);
|
|
1787
1787
|
};
|
|
1788
1788
|
IgcDataLegendComponent.prototype.getAbbreviatedSymbol = function (number, mode, minDigits, maxDigits) {
|
|
1789
|
-
var iv = this.i.
|
|
1789
|
+
var iv = this.i.c8(number, (mode == null ? null : mode), minDigits, maxDigits);
|
|
1790
1790
|
return (iv);
|
|
1791
1791
|
};
|
|
1792
1792
|
IgcDataLegendComponent.prototype.getAbbreviatedString = function (number, mode, minDigits, maxDigits) {
|
|
1793
|
-
var iv = this.i.
|
|
1793
|
+
var iv = this.i.c7(number, (mode == null ? null : mode), minDigits, maxDigits);
|
|
1794
1794
|
return (iv);
|
|
1795
1795
|
};
|
|
1796
1796
|
Object.defineProperty(IgcDataLegendComponent.prototype, "calculateColumnSummary", {
|