igniteui-webcomponents-dashboards 5.2.0 → 5.3.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 +474 -327
- package/bundles/igniteui-webcomponents-dashboards.umd.min.js +1 -1
- package/esm2015/lib/DataSeriesToDescriptionAdapter_combined.js +371 -321
- package/esm2015/lib/ValueGetterResult.js +35 -0
- package/esm2015/lib/igc-dashboard-tile-component.js +40 -10
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/DataSeriesToDescriptionAdapter_combined.js +379 -317
- package/esm5/lib/ValueGetterResult.js +45 -0
- package/esm5/lib/igc-dashboard-tile-component.js +52 -10
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-dashboards.js +446 -332
- package/fesm5/igniteui-webcomponents-dashboards.js +474 -328
- package/lib/DataSeriesToDescriptionAdapter_combined.d.ts +87 -74
- package/lib/ValueGetterResult.d.ts +14 -0
- package/lib/igc-dashboard-tile-component.d.ts +15 -0
- package/package.json +8 -8
- package/public_api.d.ts +1 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { Base, markType } from "igniteui-webcomponents-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let ValueGetterResult = /*@__PURE__*/ (() => {
|
|
12
|
+
class ValueGetterResult extends Base {
|
|
13
|
+
get value() {
|
|
14
|
+
return this._value;
|
|
15
|
+
}
|
|
16
|
+
set value(a) {
|
|
17
|
+
this._value = a;
|
|
18
|
+
}
|
|
19
|
+
get nullIsValue() {
|
|
20
|
+
return this._nullIsValue;
|
|
21
|
+
}
|
|
22
|
+
set nullIsValue(a) {
|
|
23
|
+
this._nullIsValue = a;
|
|
24
|
+
}
|
|
25
|
+
constructor(a, b) {
|
|
26
|
+
super();
|
|
27
|
+
this._value = null;
|
|
28
|
+
this._nullIsValue = false;
|
|
29
|
+
this.value = a;
|
|
30
|
+
this.nullIsValue = b;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
ValueGetterResult.$t = /*@__PURE__*/ markType(ValueGetterResult, 'ValueGetterResult');
|
|
34
|
+
return ValueGetterResult;
|
|
35
|
+
})();
|
|
@@ -789,11 +789,11 @@ export let IgcDashboardTileComponent = /*@__PURE__*/ (() => {
|
|
|
789
789
|
* Gets the brush to use for the Category axis major strokes, if applicable.
|
|
790
790
|
*/
|
|
791
791
|
get categoryAxisMajorStroke() {
|
|
792
|
-
return brushToString(this.i.
|
|
792
|
+
return brushToString(this.i.ik);
|
|
793
793
|
}
|
|
794
794
|
set categoryAxisMajorStroke(v) {
|
|
795
|
-
this.i.
|
|
796
|
-
this._a("categoryAxisMajorStroke", brushToString(this.i.
|
|
795
|
+
this.i.ik = stringToBrush(v);
|
|
796
|
+
this._a("categoryAxisMajorStroke", brushToString(this.i.ik));
|
|
797
797
|
}
|
|
798
798
|
/**
|
|
799
799
|
* Gets or sets what value lines to use in the chart.
|
|
@@ -838,6 +838,36 @@ export let IgcDashboardTileComponent = /*@__PURE__*/ (() => {
|
|
|
838
838
|
this.i.valueLinesBrushes = toBrushCollection(v);
|
|
839
839
|
this._a("valueLinesBrushes", brushCollectionToString(this.i.valueLinesBrushes));
|
|
840
840
|
}
|
|
841
|
+
/**
|
|
842
|
+
* Gets or sets the color for GlobalAverage value lines.
|
|
843
|
+
*/
|
|
844
|
+
get valueLinesGlobalAverageBrush() {
|
|
845
|
+
return brushToString(this.i.il);
|
|
846
|
+
}
|
|
847
|
+
set valueLinesGlobalAverageBrush(v) {
|
|
848
|
+
this.i.il = stringToBrush(v);
|
|
849
|
+
this._a("valueLinesGlobalAverageBrush", brushToString(this.i.il));
|
|
850
|
+
}
|
|
851
|
+
/**
|
|
852
|
+
* Gets or sets the color for GlobalMinimum value lines.
|
|
853
|
+
*/
|
|
854
|
+
get valueLinesGlobalMinimumBrush() {
|
|
855
|
+
return brushToString(this.i.io);
|
|
856
|
+
}
|
|
857
|
+
set valueLinesGlobalMinimumBrush(v) {
|
|
858
|
+
this.i.io = stringToBrush(v);
|
|
859
|
+
this._a("valueLinesGlobalMinimumBrush", brushToString(this.i.io));
|
|
860
|
+
}
|
|
861
|
+
/**
|
|
862
|
+
* Gets or sets the color for GlobalMaximum value lines.
|
|
863
|
+
*/
|
|
864
|
+
get valueLinesGlobalMaximumBrush() {
|
|
865
|
+
return brushToString(this.i.im);
|
|
866
|
+
}
|
|
867
|
+
set valueLinesGlobalMaximumBrush(v) {
|
|
868
|
+
this.i.im = stringToBrush(v);
|
|
869
|
+
this._a("valueLinesGlobalMaximumBrush", brushToString(this.i.im));
|
|
870
|
+
}
|
|
841
871
|
/**
|
|
842
872
|
* Gets or sets if the auto value callouts should be displayed.
|
|
843
873
|
*/
|
|
@@ -922,11 +952,11 @@ export let IgcDashboardTileComponent = /*@__PURE__*/ (() => {
|
|
|
922
952
|
* Gets or sets the color to use for the background of the component.
|
|
923
953
|
*/
|
|
924
954
|
get backgroundColor() {
|
|
925
|
-
return brushToString(this.i.
|
|
955
|
+
return brushToString(this.i.ij);
|
|
926
956
|
}
|
|
927
957
|
set backgroundColor(v) {
|
|
928
|
-
this.i.
|
|
929
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
958
|
+
this.i.ij = stringToBrush(v);
|
|
959
|
+
this._a("backgroundColor", brushToString(this.i.ij));
|
|
930
960
|
}
|
|
931
961
|
get isVisTypeStacked() {
|
|
932
962
|
return this.i.c9;
|
|
@@ -1041,7 +1071,7 @@ export let IgcDashboardTileComponent = /*@__PURE__*/ (() => {
|
|
|
1041
1071
|
this._inStyling = false;
|
|
1042
1072
|
}
|
|
1043
1073
|
updateSettingsValue(key, value) {
|
|
1044
|
-
this.i.
|
|
1074
|
+
this.i.h9(key, value);
|
|
1045
1075
|
}
|
|
1046
1076
|
getSettingsValue(key) {
|
|
1047
1077
|
let iv = this.i.er(key);
|
|
@@ -1052,10 +1082,10 @@ export let IgcDashboardTileComponent = /*@__PURE__*/ (() => {
|
|
|
1052
1082
|
return (iv);
|
|
1053
1083
|
}
|
|
1054
1084
|
clearSettings() {
|
|
1055
|
-
this.i.
|
|
1085
|
+
this.i.gx();
|
|
1056
1086
|
}
|
|
1057
1087
|
removeSettingsValue(key) {
|
|
1058
|
-
this.i.
|
|
1088
|
+
this.i.hx(key);
|
|
1059
1089
|
}
|
|
1060
1090
|
zoomIn(percentage) {
|
|
1061
1091
|
this.i.zoomIn(percentage);
|
|
@@ -1075,7 +1105,7 @@ export let IgcDashboardTileComponent = /*@__PURE__*/ (() => {
|
|
|
1075
1105
|
this.i.resetZoom();
|
|
1076
1106
|
}
|
|
1077
1107
|
onUIReady() {
|
|
1078
|
-
this.i.
|
|
1108
|
+
this.i.hq();
|
|
1079
1109
|
}
|
|
1080
1110
|
getDesiredToolbarActions() {
|
|
1081
1111
|
let iv = this.i.getDesiredToolbarActions();
|
package/esm2015/public_api.js
CHANGED
|
@@ -31,6 +31,7 @@ export * from './lib/DashboardTileCustomizationCollection';
|
|
|
31
31
|
export * from './lib/DashboardTileCustomization';
|
|
32
32
|
export * from './lib/igc-dashboard-tile-customization-component';
|
|
33
33
|
export * from './lib/igc-dashboard-tile-customization-module';
|
|
34
|
+
export * from './lib/ValueGetterResult';
|
|
34
35
|
export * from './lib/DataSeriesToDescriptionCustomizations';
|
|
35
36
|
export * from './lib/DashboardTileToolbarProvider';
|
|
36
37
|
export * from './lib/DashboardTileGalleryIconInfo';
|