igniteui-webcomponents-dashboards 5.3.0 → 5.4.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.
- package/bundles/igniteui-webcomponents-dashboards.umd.js +1371 -1169
- package/bundles/igniteui-webcomponents-dashboards.umd.min.js +1 -1
- package/esm2015/lib/DataChartDashboardTileFeature.js +1 -1
- package/esm2015/lib/DataSeriesToDescriptionAdapter_combined.js +1164 -1073
- package/esm2015/lib/GeographicMapDashboardTileFeature.js +1 -1
- package/esm2015/lib/LinearGaugeDashboardTileFeature.js +1 -1
- package/esm2015/lib/PieChartDashboardTileFeature.js +1 -1
- package/esm2015/lib/RadialGaugeDashboardTileFeature.js +1 -1
- package/esm2015/lib/igc-dashboard-tile-component.js +134 -85
- package/esm5/lib/DataChartDashboardTileFeature.js +1 -1
- package/esm5/lib/DataSeriesToDescriptionAdapter_combined.js +1229 -1080
- package/esm5/lib/GeographicMapDashboardTileFeature.js +1 -1
- package/esm5/lib/LinearGaugeDashboardTileFeature.js +1 -1
- package/esm5/lib/PieChartDashboardTileFeature.js +1 -1
- package/esm5/lib/RadialGaugeDashboardTileFeature.js +1 -1
- package/esm5/lib/igc-dashboard-tile-component.js +142 -85
- package/fesm2015/igniteui-webcomponents-dashboards.js +1300 -1164
- package/fesm5/igniteui-webcomponents-dashboards.js +1373 -1171
- package/lib/DataSeriesToDescriptionAdapter_combined.d.ts +332 -321
- package/lib/igc-dashboard-tile-component.d.ts +13 -0
- package/package.json +8 -8
|
@@ -18,7 +18,7 @@ var GeographicMapDashboardTileFeature = /** @class */ /*@__PURE__*/ (function (_
|
|
|
18
18
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
19
19
|
}
|
|
20
20
|
GeographicMapDashboardTileFeature.register = function () {
|
|
21
|
-
GeographicMapDashboardTileFeature.registerCore(DashboardTile.
|
|
21
|
+
GeographicMapDashboardTileFeature.registerCore(DashboardTile.bs.context);
|
|
22
22
|
};
|
|
23
23
|
GeographicMapDashboardTileFeature.registerCore = function (a) {
|
|
24
24
|
DashboardTileCommonFeature.a(a);
|
|
@@ -18,7 +18,7 @@ var LinearGaugeDashboardTileFeature = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
18
18
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
19
19
|
}
|
|
20
20
|
LinearGaugeDashboardTileFeature.register = function () {
|
|
21
|
-
LinearGaugeDashboardTileFeature.registerCore(DashboardTile.
|
|
21
|
+
LinearGaugeDashboardTileFeature.registerCore(DashboardTile.bs.context);
|
|
22
22
|
};
|
|
23
23
|
LinearGaugeDashboardTileFeature.registerCore = function (a) {
|
|
24
24
|
DashboardTileCommonFeature.a(a);
|
|
@@ -19,7 +19,7 @@ var PieChartDashboardTileFeature = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
19
19
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
20
20
|
}
|
|
21
21
|
PieChartDashboardTileFeature.register = function () {
|
|
22
|
-
PieChartDashboardTileFeature.registerCore(DashboardTile.
|
|
22
|
+
PieChartDashboardTileFeature.registerCore(DashboardTile.bs.context);
|
|
23
23
|
};
|
|
24
24
|
PieChartDashboardTileFeature.registerCore = function (a) {
|
|
25
25
|
DashboardTileCommonFeature.a(a);
|
|
@@ -18,7 +18,7 @@ var RadialGaugeDashboardTileFeature = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
18
18
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
19
19
|
}
|
|
20
20
|
RadialGaugeDashboardTileFeature.register = function () {
|
|
21
|
-
RadialGaugeDashboardTileFeature.registerCore(DashboardTile.
|
|
21
|
+
RadialGaugeDashboardTileFeature.registerCore(DashboardTile.bs.context);
|
|
22
22
|
};
|
|
23
23
|
RadialGaugeDashboardTileFeature.registerCore = function (a) {
|
|
24
24
|
DashboardTileCommonFeature.a(a);
|
|
@@ -26,6 +26,8 @@ import { IgcDashboardTileSortDescriptionCollection } from "./igc-dashboard-tile-
|
|
|
26
26
|
import { NotifyCollectionChangedAction } from "igniteui-webcomponents-core";
|
|
27
27
|
import { IgcDashboardTileCustomizationCollection } from "./igc-dashboard-tile-customization-collection";
|
|
28
28
|
import { IgcDashboardTileChangingContentEventArgs } from "./igc-dashboard-tile-changing-content-event-args";
|
|
29
|
+
import { IgcTrendLineTypeCollection } from "igniteui-webcomponents-charts";
|
|
30
|
+
import { TrendLineTypeCollection as TrendLineTypeCollection_internal } from "igniteui-webcomponents-charts";
|
|
29
31
|
var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
30
32
|
__extends(IgcDashboardTileComponent, _super);
|
|
31
33
|
function IgcDashboardTileComponent() {
|
|
@@ -36,6 +38,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
36
38
|
_this._queuedSetAttributes = [];
|
|
37
39
|
_this._updatingFromAttribute = false;
|
|
38
40
|
_this._customizations = null;
|
|
41
|
+
_this._trendLineTypes = null;
|
|
39
42
|
_this._selectedSeriesItems = null;
|
|
40
43
|
_this._valueLines = null;
|
|
41
44
|
_this.__p = null;
|
|
@@ -320,10 +323,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
320
323
|
* Gets or sets text to display above the plot area.
|
|
321
324
|
*/
|
|
322
325
|
get: function () {
|
|
323
|
-
return this.i.
|
|
326
|
+
return this.i.gj;
|
|
324
327
|
},
|
|
325
328
|
set: function (v) {
|
|
326
|
-
this.i.
|
|
329
|
+
this.i.gj = v;
|
|
327
330
|
},
|
|
328
331
|
enumerable: false,
|
|
329
332
|
configurable: true
|
|
@@ -333,7 +336,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
333
336
|
* Gets the initial sorts that are applied to the chart.
|
|
334
337
|
*/
|
|
335
338
|
get: function () {
|
|
336
|
-
var r = this.i.
|
|
339
|
+
var r = this.i.a0;
|
|
337
340
|
if (r == null) {
|
|
338
341
|
return null;
|
|
339
342
|
}
|
|
@@ -359,7 +362,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
359
362
|
* Gets the initial sorts that are applied to the chart after groupings and summaries are applied.
|
|
360
363
|
*/
|
|
361
364
|
get: function () {
|
|
362
|
-
var r = this.i.
|
|
365
|
+
var r = this.i.az;
|
|
363
366
|
if (r == null) {
|
|
364
367
|
return null;
|
|
365
368
|
}
|
|
@@ -385,7 +388,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
385
388
|
* Gets the initial groupings that are applied to the chart.
|
|
386
389
|
*/
|
|
387
390
|
get: function () {
|
|
388
|
-
var r = this.i.
|
|
391
|
+
var r = this.i.ay;
|
|
389
392
|
if (r == null) {
|
|
390
393
|
return null;
|
|
391
394
|
}
|
|
@@ -411,7 +414,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
411
414
|
* Gets the initial filters that are applied to the chart.
|
|
412
415
|
*/
|
|
413
416
|
get: function () {
|
|
414
|
-
var r = this.i.
|
|
417
|
+
var r = this.i.bn;
|
|
415
418
|
if (r == null) {
|
|
416
419
|
return null;
|
|
417
420
|
}
|
|
@@ -437,7 +440,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
437
440
|
* Gets the initial highlight filters that are applied to the chart.
|
|
438
441
|
*/
|
|
439
442
|
get: function () {
|
|
440
|
-
var r = this.i.
|
|
443
|
+
var r = this.i.bo;
|
|
441
444
|
if (r == null) {
|
|
442
445
|
return null;
|
|
443
446
|
}
|
|
@@ -463,7 +466,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
463
466
|
* Gets the initial summaries that are applied to the chart.
|
|
464
467
|
*/
|
|
465
468
|
get: function () {
|
|
466
|
-
var r = this.i.
|
|
469
|
+
var r = this.i.a4;
|
|
467
470
|
if (r == null) {
|
|
468
471
|
return null;
|
|
469
472
|
}
|
|
@@ -489,10 +492,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
489
492
|
* Gets or sets the sorts to apply to the chart. This property will become ignored if sorts are changed outside of this property.
|
|
490
493
|
*/
|
|
491
494
|
get: function () {
|
|
492
|
-
return this.i.
|
|
495
|
+
return this.i.f7;
|
|
493
496
|
},
|
|
494
497
|
set: function (v) {
|
|
495
|
-
this.i.
|
|
498
|
+
this.i.f7 = v;
|
|
496
499
|
},
|
|
497
500
|
enumerable: false,
|
|
498
501
|
configurable: true
|
|
@@ -502,10 +505,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
502
505
|
* Gets or sets the sorts to apply after grouping has been applied.
|
|
503
506
|
*/
|
|
504
507
|
get: function () {
|
|
505
|
-
return this.i.
|
|
508
|
+
return this.i.fw;
|
|
506
509
|
},
|
|
507
510
|
set: function (v) {
|
|
508
|
-
this.i.
|
|
511
|
+
this.i.fw = v;
|
|
509
512
|
},
|
|
510
513
|
enumerable: false,
|
|
511
514
|
configurable: true
|
|
@@ -515,10 +518,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
515
518
|
* Gets or sets the groupings to apply to the chart. This property will become ignored if sorts are changed outside of this property.
|
|
516
519
|
*/
|
|
517
520
|
get: function () {
|
|
518
|
-
return this.i.
|
|
521
|
+
return this.i.f3;
|
|
519
522
|
},
|
|
520
523
|
set: function (v) {
|
|
521
|
-
this.i.
|
|
524
|
+
this.i.f3 = v;
|
|
522
525
|
},
|
|
523
526
|
enumerable: false,
|
|
524
527
|
configurable: true
|
|
@@ -528,10 +531,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
528
531
|
* Gets or sets the filter to apply to the chart. This property will become ignored if the filter is changed outside of this property.
|
|
529
532
|
*/
|
|
530
533
|
get: function () {
|
|
531
|
-
return this.i.
|
|
534
|
+
return this.i.f1;
|
|
532
535
|
},
|
|
533
536
|
set: function (v) {
|
|
534
|
-
this.i.
|
|
537
|
+
this.i.f1 = v;
|
|
535
538
|
},
|
|
536
539
|
enumerable: false,
|
|
537
540
|
configurable: true
|
|
@@ -541,10 +544,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
541
544
|
* Gets or sets the filter to apply to the chart. This property will become ignored if the filter is changed outside of this property.
|
|
542
545
|
*/
|
|
543
546
|
get: function () {
|
|
544
|
-
return this.i.
|
|
547
|
+
return this.i.f5;
|
|
545
548
|
},
|
|
546
549
|
set: function (v) {
|
|
547
|
-
this.i.
|
|
550
|
+
this.i.f5 = v;
|
|
548
551
|
},
|
|
549
552
|
enumerable: false,
|
|
550
553
|
configurable: true
|
|
@@ -554,10 +557,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
554
557
|
* Gets or sets the summaries to apply to the chart. This property will become ignored if sorts are changed outside of this property.
|
|
555
558
|
*/
|
|
556
559
|
get: function () {
|
|
557
|
-
return this.i.
|
|
560
|
+
return this.i.f9;
|
|
558
561
|
},
|
|
559
562
|
set: function (v) {
|
|
560
|
-
this.i.
|
|
563
|
+
this.i.f9 = v;
|
|
561
564
|
},
|
|
562
565
|
enumerable: false,
|
|
563
566
|
configurable: true
|
|
@@ -567,7 +570,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
567
570
|
* Gets the current sort that is applied to the grid. Collection can be updated to modify the sort for the grid. Once sort descriptions are in this collection, the grid will no longer listen for changes on their properties.
|
|
568
571
|
*/
|
|
569
572
|
get: function () {
|
|
570
|
-
var r = this.i.
|
|
573
|
+
var r = this.i.a1;
|
|
571
574
|
if (r == null) {
|
|
572
575
|
return null;
|
|
573
576
|
}
|
|
@@ -590,7 +593,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
590
593
|
});
|
|
591
594
|
Object.defineProperty(IgcDashboardTileComponent.prototype, "groupSortDescriptions", {
|
|
592
595
|
get: function () {
|
|
593
|
-
var r = this.i.
|
|
596
|
+
var r = this.i.ax;
|
|
594
597
|
if (r == null) {
|
|
595
598
|
return null;
|
|
596
599
|
}
|
|
@@ -616,7 +619,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
616
619
|
* Gets the current grouping that is applied to the grid. Collection can be updated to modify the grouping for the grid. Once grouping descriptions are in this collection, the grid will no longer listen for changes on their properties.
|
|
617
620
|
*/
|
|
618
621
|
get: function () {
|
|
619
|
-
var r = this.i.
|
|
622
|
+
var r = this.i.aw;
|
|
620
623
|
if (r == null) {
|
|
621
624
|
return null;
|
|
622
625
|
}
|
|
@@ -642,7 +645,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
642
645
|
* Gets the current filter that is applied to the chart. Collection can be updated to modify the filter for the chart. Once filter expressions are in this collection, the chart will no longer listen for changes on their properties.
|
|
643
646
|
*/
|
|
644
647
|
get: function () {
|
|
645
|
-
var r = this.i.
|
|
648
|
+
var r = this.i.bl;
|
|
646
649
|
if (r == null) {
|
|
647
650
|
return null;
|
|
648
651
|
}
|
|
@@ -668,7 +671,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
668
671
|
* Gets the current highlight filter that is applied to the chart. Collection can be updated to modify the highlight filter for the chart. Once filter expressions are in this collection, the chart will no longer listen for changes on their properties.
|
|
669
672
|
*/
|
|
670
673
|
get: function () {
|
|
671
|
-
var r = this.i.
|
|
674
|
+
var r = this.i.bm;
|
|
672
675
|
if (r == null) {
|
|
673
676
|
return null;
|
|
674
677
|
}
|
|
@@ -694,7 +697,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
694
697
|
* Gets the current summaries that are applied to the grid.
|
|
695
698
|
*/
|
|
696
699
|
get: function () {
|
|
697
|
-
var r = this.i.
|
|
700
|
+
var r = this.i.a5;
|
|
698
701
|
if (r == null) {
|
|
699
702
|
return null;
|
|
700
703
|
}
|
|
@@ -756,11 +759,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
756
759
|
* Gets or sets whether the dashboard tile should display mock data when the data source has not been provided, if supported for this type of chart.
|
|
757
760
|
*/
|
|
758
761
|
get: function () {
|
|
759
|
-
return this.i.
|
|
762
|
+
return this.i.dh;
|
|
760
763
|
},
|
|
761
764
|
set: function (v) {
|
|
762
|
-
this.i.
|
|
763
|
-
this._a("shouldDisplayMockData", this.i.
|
|
765
|
+
this.i.dh = ensureBool(v);
|
|
766
|
+
this._a("shouldDisplayMockData", this.i.dh);
|
|
764
767
|
},
|
|
765
768
|
enumerable: false,
|
|
766
769
|
configurable: true
|
|
@@ -785,11 +788,62 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
785
788
|
* This property applies only to these chart types: point, line, spline, and bubble
|
|
786
789
|
*/
|
|
787
790
|
get: function () {
|
|
788
|
-
return this.i.
|
|
791
|
+
return this.i.aj;
|
|
792
|
+
},
|
|
793
|
+
set: function (v) {
|
|
794
|
+
this.i.aj = ensureEnum(TrendLineType_$type, v);
|
|
795
|
+
this._a("trendLineType", enumToString(TrendLineType_$type, this.i.aj));
|
|
796
|
+
},
|
|
797
|
+
enumerable: false,
|
|
798
|
+
configurable: true
|
|
799
|
+
});
|
|
800
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "trendLineBrushes", {
|
|
801
|
+
/**
|
|
802
|
+
* Gets or sets the palette of brushes to used for coloring trend lines in this chart.
|
|
803
|
+
* The value provided should be an array of CSS color strings or JavaScript objects defining gradients. Optionally the first element can be a string reading "RGB" or "HSV" to specify the interpolation mode of the collection
|
|
804
|
+
*/
|
|
805
|
+
get: function () {
|
|
806
|
+
return fromBrushCollection(this.i.z);
|
|
807
|
+
},
|
|
808
|
+
set: function (v) {
|
|
809
|
+
this.i.z = toBrushCollection(v);
|
|
810
|
+
this._a("trendLineBrushes", brushCollectionToString(this.i.z));
|
|
811
|
+
},
|
|
812
|
+
enumerable: false,
|
|
813
|
+
configurable: true
|
|
814
|
+
});
|
|
815
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "trendLineTypes", {
|
|
816
|
+
/**
|
|
817
|
+
* Gets or sets what trendlines to use in the chart.
|
|
818
|
+
*/
|
|
819
|
+
get: function () {
|
|
820
|
+
if (this._trendLineTypes === null) {
|
|
821
|
+
var coll = new IgcTrendLineTypeCollection();
|
|
822
|
+
var innerColl = this.i.trendLineTypes;
|
|
823
|
+
if (!innerColl) {
|
|
824
|
+
innerColl = new TrendLineTypeCollection_internal();
|
|
825
|
+
}
|
|
826
|
+
this._trendLineTypes = coll._fromInner(innerColl);
|
|
827
|
+
this.i.trendLineTypes = innerColl;
|
|
828
|
+
}
|
|
829
|
+
return this._trendLineTypes;
|
|
789
830
|
},
|
|
790
831
|
set: function (v) {
|
|
791
|
-
this.
|
|
792
|
-
|
|
832
|
+
if (this._trendLineTypes !== null) {
|
|
833
|
+
this._trendLineTypes._setSyncTarget(null);
|
|
834
|
+
this._trendLineTypes = null;
|
|
835
|
+
}
|
|
836
|
+
var coll = new IgcTrendLineTypeCollection();
|
|
837
|
+
this._trendLineTypes = coll._fromOuter(v);
|
|
838
|
+
var syncColl = new SyncableObservableCollection$1(TrendLineType_$type);
|
|
839
|
+
var innerColl = this.i.trendLineTypes;
|
|
840
|
+
if (!innerColl) {
|
|
841
|
+
innerColl = new TrendLineTypeCollection_internal();
|
|
842
|
+
}
|
|
843
|
+
syncColl._inner = innerColl;
|
|
844
|
+
syncColl.clear();
|
|
845
|
+
this._trendLineTypes._setSyncTarget(syncColl);
|
|
846
|
+
this.i.trendLineTypes = innerColl;
|
|
793
847
|
},
|
|
794
848
|
enumerable: false,
|
|
795
849
|
configurable: true
|
|
@@ -799,11 +853,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
799
853
|
* Gets or sets whether the dashboard tile should use a faded skeleton style for mock data.
|
|
800
854
|
*/
|
|
801
855
|
get: function () {
|
|
802
|
-
return this.i.
|
|
856
|
+
return this.i.di;
|
|
803
857
|
},
|
|
804
858
|
set: function (v) {
|
|
805
|
-
this.i.
|
|
806
|
-
this._a("shouldUseSkeletonStyleForMockData", this.i.
|
|
859
|
+
this.i.di = ensureBool(v);
|
|
860
|
+
this._a("shouldUseSkeletonStyleForMockData", this.i.di);
|
|
807
861
|
},
|
|
808
862
|
enumerable: false,
|
|
809
863
|
configurable: true
|
|
@@ -814,11 +868,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
814
868
|
* This property applies to Category Chart and Financial Chart controls.
|
|
815
869
|
*/
|
|
816
870
|
get: function () {
|
|
817
|
-
return this.i.
|
|
871
|
+
return this.i.ah;
|
|
818
872
|
},
|
|
819
873
|
set: function (v) {
|
|
820
|
-
this.i.
|
|
821
|
-
this._a("highlightedValuesDisplayMode", enumToString(SeriesHighlightedValuesDisplayMode_$type, this.i.
|
|
874
|
+
this.i.ah = ensureEnum(SeriesHighlightedValuesDisplayMode_$type, v);
|
|
875
|
+
this._a("highlightedValuesDisplayMode", enumToString(SeriesHighlightedValuesDisplayMode_$type, this.i.ah));
|
|
822
876
|
},
|
|
823
877
|
enumerable: false,
|
|
824
878
|
configurable: true
|
|
@@ -880,11 +934,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
880
934
|
* The value provided should be an array of CSS color strings or JavaScript objects defining gradients. Optionally the first element can be a string reading "RGB" or "HSV" to specify the interpolation mode of the collection
|
|
881
935
|
*/
|
|
882
936
|
get: function () {
|
|
883
|
-
return fromBrushCollection(this.i.
|
|
937
|
+
return fromBrushCollection(this.i.w);
|
|
884
938
|
},
|
|
885
939
|
set: function (v) {
|
|
886
|
-
this.i.
|
|
887
|
-
this._a("brushes", brushCollectionToString(this.i.
|
|
940
|
+
this.i.w = toBrushCollection(v);
|
|
941
|
+
this._a("brushes", brushCollectionToString(this.i.w));
|
|
888
942
|
},
|
|
889
943
|
enumerable: false,
|
|
890
944
|
configurable: true
|
|
@@ -895,11 +949,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
895
949
|
* The value provided should be an array of CSS color strings or JavaScript objects defining gradients. Optionally the first element can be a string reading "RGB" or "HSV" to specify the interpolation mode of the collection
|
|
896
950
|
*/
|
|
897
951
|
get: function () {
|
|
898
|
-
return fromBrushCollection(this.i.
|
|
952
|
+
return fromBrushCollection(this.i.x);
|
|
899
953
|
},
|
|
900
954
|
set: function (v) {
|
|
901
|
-
this.i.
|
|
902
|
-
this._a("outlines", brushCollectionToString(this.i.
|
|
955
|
+
this.i.x = toBrushCollection(v);
|
|
956
|
+
this._a("outlines", brushCollectionToString(this.i.x));
|
|
903
957
|
},
|
|
904
958
|
enumerable: false,
|
|
905
959
|
configurable: true
|
|
@@ -946,11 +1000,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
946
1000
|
* Gets the actual palette of brushes to use for coloring the chart series.
|
|
947
1001
|
*/
|
|
948
1002
|
get: function () {
|
|
949
|
-
return fromBrushCollection(this.i.
|
|
1003
|
+
return fromBrushCollection(this.i.u);
|
|
950
1004
|
},
|
|
951
1005
|
set: function (v) {
|
|
952
|
-
this.i.
|
|
953
|
-
this._a("actualBrushes", brushCollectionToString(this.i.
|
|
1006
|
+
this.i.u = toBrushCollection(v);
|
|
1007
|
+
this._a("actualBrushes", brushCollectionToString(this.i.u));
|
|
954
1008
|
},
|
|
955
1009
|
enumerable: false,
|
|
956
1010
|
configurable: true
|
|
@@ -960,11 +1014,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
960
1014
|
* Gets the actual palette of brushes to use for outlines on the chart series.
|
|
961
1015
|
*/
|
|
962
1016
|
get: function () {
|
|
963
|
-
return fromBrushCollection(this.i.
|
|
1017
|
+
return fromBrushCollection(this.i.v);
|
|
964
1018
|
},
|
|
965
1019
|
set: function (v) {
|
|
966
|
-
this.i.
|
|
967
|
-
this._a("actualOutlines", brushCollectionToString(this.i.
|
|
1020
|
+
this.i.v = toBrushCollection(v);
|
|
1021
|
+
this._a("actualOutlines", brushCollectionToString(this.i.v));
|
|
968
1022
|
},
|
|
969
1023
|
enumerable: false,
|
|
970
1024
|
configurable: true
|
|
@@ -974,11 +1028,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
974
1028
|
* Gets the brush to use for the Category axis major strokes, if applicable.
|
|
975
1029
|
*/
|
|
976
1030
|
get: function () {
|
|
977
|
-
return brushToString(this.i.
|
|
1031
|
+
return brushToString(this.i.it);
|
|
978
1032
|
},
|
|
979
1033
|
set: function (v) {
|
|
980
|
-
this.i.
|
|
981
|
-
this._a("categoryAxisMajorStroke", brushToString(this.i.
|
|
1034
|
+
this.i.it = stringToBrush(v);
|
|
1035
|
+
this._a("categoryAxisMajorStroke", brushToString(this.i.it));
|
|
982
1036
|
},
|
|
983
1037
|
enumerable: false,
|
|
984
1038
|
configurable: true
|
|
@@ -1039,11 +1093,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1039
1093
|
* Gets or sets the color for GlobalAverage value lines.
|
|
1040
1094
|
*/
|
|
1041
1095
|
get: function () {
|
|
1042
|
-
return brushToString(this.i.
|
|
1096
|
+
return brushToString(this.i.iu);
|
|
1043
1097
|
},
|
|
1044
1098
|
set: function (v) {
|
|
1045
|
-
this.i.
|
|
1046
|
-
this._a("valueLinesGlobalAverageBrush", brushToString(this.i.
|
|
1099
|
+
this.i.iu = stringToBrush(v);
|
|
1100
|
+
this._a("valueLinesGlobalAverageBrush", brushToString(this.i.iu));
|
|
1047
1101
|
},
|
|
1048
1102
|
enumerable: false,
|
|
1049
1103
|
configurable: true
|
|
@@ -1053,11 +1107,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1053
1107
|
* Gets or sets the color for GlobalMinimum value lines.
|
|
1054
1108
|
*/
|
|
1055
1109
|
get: function () {
|
|
1056
|
-
return brushToString(this.i.
|
|
1110
|
+
return brushToString(this.i.iw);
|
|
1057
1111
|
},
|
|
1058
1112
|
set: function (v) {
|
|
1059
|
-
this.i.
|
|
1060
|
-
this._a("valueLinesGlobalMinimumBrush", brushToString(this.i.
|
|
1113
|
+
this.i.iw = stringToBrush(v);
|
|
1114
|
+
this._a("valueLinesGlobalMinimumBrush", brushToString(this.i.iw));
|
|
1061
1115
|
},
|
|
1062
1116
|
enumerable: false,
|
|
1063
1117
|
configurable: true
|
|
@@ -1067,11 +1121,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1067
1121
|
* Gets or sets the color for GlobalMaximum value lines.
|
|
1068
1122
|
*/
|
|
1069
1123
|
get: function () {
|
|
1070
|
-
return brushToString(this.i.
|
|
1124
|
+
return brushToString(this.i.iv);
|
|
1071
1125
|
},
|
|
1072
1126
|
set: function (v) {
|
|
1073
|
-
this.i.
|
|
1074
|
-
this._a("valueLinesGlobalMaximumBrush", brushToString(this.i.
|
|
1127
|
+
this.i.iv = stringToBrush(v);
|
|
1128
|
+
this._a("valueLinesGlobalMaximumBrush", brushToString(this.i.iv));
|
|
1075
1129
|
},
|
|
1076
1130
|
enumerable: false,
|
|
1077
1131
|
configurable: true
|
|
@@ -1137,11 +1191,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1137
1191
|
* Gets or sets the crosshairs to be displayed.
|
|
1138
1192
|
*/
|
|
1139
1193
|
get: function () {
|
|
1140
|
-
return this.i.
|
|
1194
|
+
return this.i.ba;
|
|
1141
1195
|
},
|
|
1142
1196
|
set: function (v) {
|
|
1143
|
-
this.i.
|
|
1144
|
-
this._a("visualizationType", enumToString(DashboardTileVisualizationType_$type, this.i.
|
|
1197
|
+
this.i.ba = ensureEnum(DashboardTileVisualizationType_$type, v);
|
|
1198
|
+
this._a("visualizationType", enumToString(DashboardTileVisualizationType_$type, this.i.ba));
|
|
1145
1199
|
},
|
|
1146
1200
|
enumerable: false,
|
|
1147
1201
|
configurable: true
|
|
@@ -1151,11 +1205,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1151
1205
|
* Gets or sets the crosshairs to be displayed.
|
|
1152
1206
|
*/
|
|
1153
1207
|
get: function () {
|
|
1154
|
-
return this.i.
|
|
1208
|
+
return this.i.ec;
|
|
1155
1209
|
},
|
|
1156
1210
|
set: function (v) {
|
|
1157
|
-
this.i.
|
|
1158
|
-
this._a("validVisualizationTypePriorityThreshold", this.i.
|
|
1211
|
+
this.i.ec = +v;
|
|
1212
|
+
this._a("validVisualizationTypePriorityThreshold", this.i.ec);
|
|
1159
1213
|
},
|
|
1160
1214
|
enumerable: false,
|
|
1161
1215
|
configurable: true
|
|
@@ -1165,11 +1219,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1165
1219
|
* Gets or sets the base built in theme to use for the checkbox.
|
|
1166
1220
|
*/
|
|
1167
1221
|
get: function () {
|
|
1168
|
-
return this.i.
|
|
1222
|
+
return this.i.bx;
|
|
1169
1223
|
},
|
|
1170
1224
|
set: function (v) {
|
|
1171
|
-
this.i.
|
|
1172
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
1225
|
+
this.i.bx = ensureEnum(BaseControlTheme_$type, v);
|
|
1226
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.bx));
|
|
1173
1227
|
},
|
|
1174
1228
|
enumerable: false,
|
|
1175
1229
|
configurable: true
|
|
@@ -1179,11 +1233,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1179
1233
|
* Gets or sets the display density to use for the toolbar.
|
|
1180
1234
|
*/
|
|
1181
1235
|
get: function () {
|
|
1182
|
-
return this.i.
|
|
1236
|
+
return this.i.bz;
|
|
1183
1237
|
},
|
|
1184
1238
|
set: function (v) {
|
|
1185
|
-
this.i.
|
|
1186
|
-
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.
|
|
1239
|
+
this.i.bz = ensureEnum(ControlDisplayDensity_$type, v);
|
|
1240
|
+
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.bz));
|
|
1187
1241
|
},
|
|
1188
1242
|
enumerable: false,
|
|
1189
1243
|
configurable: true
|
|
@@ -1193,25 +1247,25 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1193
1247
|
* Gets or sets the color to use for the background of the component.
|
|
1194
1248
|
*/
|
|
1195
1249
|
get: function () {
|
|
1196
|
-
return brushToString(this.i.
|
|
1250
|
+
return brushToString(this.i.is);
|
|
1197
1251
|
},
|
|
1198
1252
|
set: function (v) {
|
|
1199
|
-
this.i.
|
|
1200
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
1253
|
+
this.i.is = stringToBrush(v);
|
|
1254
|
+
this._a("backgroundColor", brushToString(this.i.is));
|
|
1201
1255
|
},
|
|
1202
1256
|
enumerable: false,
|
|
1203
1257
|
configurable: true
|
|
1204
1258
|
});
|
|
1205
1259
|
Object.defineProperty(IgcDashboardTileComponent.prototype, "isVisTypeStacked", {
|
|
1206
1260
|
get: function () {
|
|
1207
|
-
return this.i.
|
|
1261
|
+
return this.i.dc;
|
|
1208
1262
|
},
|
|
1209
1263
|
enumerable: false,
|
|
1210
1264
|
configurable: true
|
|
1211
1265
|
});
|
|
1212
1266
|
Object.defineProperty(IgcDashboardTileComponent.prototype, "isVisTypeRadial", {
|
|
1213
1267
|
get: function () {
|
|
1214
|
-
return this.i.
|
|
1268
|
+
return this.i.db;
|
|
1215
1269
|
},
|
|
1216
1270
|
enumerable: false,
|
|
1217
1271
|
configurable: true
|
|
@@ -1261,6 +1315,9 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1261
1315
|
if (this.summaryDescriptions != null && this.summaryDescriptions.findByName && this.summaryDescriptions.findByName(name)) {
|
|
1262
1316
|
return this.summaryDescriptions.findByName(name);
|
|
1263
1317
|
}
|
|
1318
|
+
if (this.trendLineTypes != null && this.trendLineTypes.findByName && this.trendLineTypes.findByName(name)) {
|
|
1319
|
+
return this.trendLineTypes.findByName(name);
|
|
1320
|
+
}
|
|
1264
1321
|
if (this.selectedSeriesItems != null && this.selectedSeriesItems.findByName && this.selectedSeriesItems.findByName(name)) {
|
|
1265
1322
|
return this.selectedSeriesItems.findByName(name);
|
|
1266
1323
|
}
|
|
@@ -1327,21 +1384,21 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1327
1384
|
this._inStyling = false;
|
|
1328
1385
|
};
|
|
1329
1386
|
IgcDashboardTileComponent.prototype.updateSettingsValue = function (key, value) {
|
|
1330
|
-
this.i.
|
|
1387
|
+
this.i.ii(key, value);
|
|
1331
1388
|
};
|
|
1332
1389
|
IgcDashboardTileComponent.prototype.getSettingsValue = function (key) {
|
|
1333
|
-
var iv = this.i.
|
|
1390
|
+
var iv = this.i.ew(key);
|
|
1334
1391
|
return (iv);
|
|
1335
1392
|
};
|
|
1336
1393
|
IgcDashboardTileComponent.prototype.hasModifiedSettings = function () {
|
|
1337
|
-
var iv = this.i.
|
|
1394
|
+
var iv = this.i.cw();
|
|
1338
1395
|
return (iv);
|
|
1339
1396
|
};
|
|
1340
1397
|
IgcDashboardTileComponent.prototype.clearSettings = function () {
|
|
1341
|
-
this.i.
|
|
1398
|
+
this.i.g4();
|
|
1342
1399
|
};
|
|
1343
1400
|
IgcDashboardTileComponent.prototype.removeSettingsValue = function (key) {
|
|
1344
|
-
this.i.
|
|
1401
|
+
this.i.h4(key);
|
|
1345
1402
|
};
|
|
1346
1403
|
IgcDashboardTileComponent.prototype.zoomIn = function (percentage) {
|
|
1347
1404
|
this.i.zoomIn(percentage);
|
|
@@ -1361,7 +1418,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1361
1418
|
this.i.resetZoom();
|
|
1362
1419
|
};
|
|
1363
1420
|
IgcDashboardTileComponent.prototype.onUIReady = function () {
|
|
1364
|
-
this.i.
|
|
1421
|
+
this.i.hx();
|
|
1365
1422
|
};
|
|
1366
1423
|
IgcDashboardTileComponent.prototype.getDesiredToolbarActions = function () {
|
|
1367
1424
|
var iv = this.i.getDesiredToolbarActions();
|