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.
- package/bundles/igniteui-angular-core.umd.js +1402 -1246
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/AxisDescription.js +171 -139
- package/esm2015/lib/AxisDescriptionMetadata.js +4 -0
- package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm2015/lib/CategoryAxisBaseDescription.js +23 -23
- package/esm2015/lib/CategoryChartDescription.js +130 -130
- package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm2015/lib/CategoryXAxisDescription.js +32 -32
- package/esm2015/lib/CategoryYAxisDescription.js +32 -32
- package/esm2015/lib/DataPieBaseChartDescription.js +107 -107
- package/esm2015/lib/DataPieChartDescription.js +35 -35
- package/esm2015/lib/FinancialChartDescription.js +176 -176
- package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
- package/esm2015/lib/NumericAxisBaseDescription.js +83 -83
- package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm2015/lib/RadialBaseChartDescription.js +215 -183
- package/esm2015/lib/RadialBaseChartDescriptionMetadata.js +4 -0
- package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
- package/esm2015/lib/TimeXAxisDescription.js +12 -12
- package/esm2015/lib/XYChartDescription.js +215 -183
- package/esm2015/lib/XYChartDescriptionMetadata.js +4 -0
- package/esm5/lib/AxisDescription.js +187 -139
- package/esm5/lib/AxisDescriptionMetadata.js +4 -0
- package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm5/lib/CategoryAxisBaseDescription.js +23 -23
- package/esm5/lib/CategoryChartDescription.js +130 -130
- package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm5/lib/CategoryXAxisDescription.js +32 -32
- package/esm5/lib/CategoryYAxisDescription.js +32 -32
- package/esm5/lib/DataPieBaseChartDescription.js +107 -107
- package/esm5/lib/DataPieChartDescription.js +35 -35
- package/esm5/lib/FinancialChartDescription.js +176 -176
- package/esm5/lib/NumericAngleAxisDescription.js +6 -6
- package/esm5/lib/NumericAxisBaseDescription.js +83 -83
- package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm5/lib/RadialBaseChartDescription.js +231 -183
- package/esm5/lib/RadialBaseChartDescriptionMetadata.js +4 -0
- package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm5/lib/TimeAxisBaseDescription.js +24 -24
- package/esm5/lib/TimeXAxisDescription.js +12 -12
- package/esm5/lib/XYChartDescription.js +231 -183
- package/esm5/lib/XYChartDescriptionMetadata.js +4 -0
- package/fesm2015/igniteui-angular-core.js +1354 -1246
- package/fesm5/igniteui-angular-core.js +1402 -1246
- package/lib/AxisDescription.d.ts +60 -48
- package/lib/CategoryAngleAxisDescription.d.ts +7 -7
- package/lib/CategoryAxisBaseDescription.d.ts +8 -8
- package/lib/CategoryChartDescription.d.ts +45 -45
- package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
- package/lib/CategoryXAxisDescription.d.ts +11 -11
- package/lib/CategoryYAxisDescription.d.ts +11 -11
- package/lib/DataPieBaseChartDescription.d.ts +38 -38
- package/lib/DataPieChartDescription.d.ts +12 -12
- package/lib/FinancialChartDescription.d.ts +61 -61
- package/lib/NumericAngleAxisDescription.d.ts +2 -2
- package/lib/NumericAxisBaseDescription.d.ts +28 -28
- package/lib/NumericRadiusAxisDescription.d.ts +2 -2
- package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
- package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
- package/lib/RadialBaseChartDescription.d.ts +77 -65
- package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
- package/lib/TimeAxisBaseDescription.d.ts +8 -8
- package/lib/TimeXAxisDescription.d.ts +4 -4
- package/lib/XYChartDescription.d.ts +77 -65
- package/package.json +4 -4
|
@@ -85,7 +85,11 @@ var RadialBaseChartDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (
|
|
|
85
85
|
a.item("AngleAxisLabelAngle", "Number:double");
|
|
86
86
|
a.item("ValueAxisLabelAngle", "Number:double");
|
|
87
87
|
a.item("AngleAxisExtent", "Number:double");
|
|
88
|
+
a.item("AngleAxisMaximumExtent", "Number:double");
|
|
89
|
+
a.item("AngleAxisMaximumExtentPercentage", "Number:double");
|
|
88
90
|
a.item("ValueAxisExtent", "Number:double");
|
|
91
|
+
a.item("ValueAxisMaximumExtent", "Number:double");
|
|
92
|
+
a.item("ValueAxisMaximumExtentPercentage", "Number:double");
|
|
89
93
|
a.item("AngleAxisTitleAngle", "Number:double");
|
|
90
94
|
a.item("ValueAxisTitleAngle", "Number:double");
|
|
91
95
|
a.item("AngleAxisInverted", "Boolean");
|
|
@@ -14,7 +14,7 @@ var StraightNumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (
|
|
|
14
14
|
__extends(StraightNumericAxisBaseDescription, _super);
|
|
15
15
|
function StraightNumericAxisBaseDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.
|
|
17
|
+
_this.ff = null;
|
|
18
18
|
return _this;
|
|
19
19
|
}
|
|
20
20
|
StraightNumericAxisBaseDescription.prototype.get_type = function () {
|
|
@@ -22,10 +22,10 @@ var StraightNumericAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (
|
|
|
22
22
|
};
|
|
23
23
|
Object.defineProperty(StraightNumericAxisBaseDescription.prototype, "scaleMode", {
|
|
24
24
|
get: function () {
|
|
25
|
-
return this.
|
|
25
|
+
return this.ff;
|
|
26
26
|
},
|
|
27
27
|
set: function (a) {
|
|
28
|
-
this.
|
|
28
|
+
this.ff = a;
|
|
29
29
|
this.g("ScaleMode");
|
|
30
30
|
},
|
|
31
31
|
enumerable: false,
|
|
@@ -14,14 +14,14 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(TimeAxisBaseDescription, _super);
|
|
15
15
|
function TimeAxisBaseDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.
|
|
18
|
-
_this.
|
|
19
|
-
_this.
|
|
20
|
-
_this.
|
|
21
|
-
_this.
|
|
22
|
-
_this.
|
|
23
|
-
_this.
|
|
24
|
-
_this.
|
|
17
|
+
_this.en = null;
|
|
18
|
+
_this.eb = false;
|
|
19
|
+
_this.ee = new Date();
|
|
20
|
+
_this.ed = new Date();
|
|
21
|
+
_this.eg = new Date();
|
|
22
|
+
_this.ef = new Date();
|
|
23
|
+
_this.em = null;
|
|
24
|
+
_this.el = null;
|
|
25
25
|
return _this;
|
|
26
26
|
}
|
|
27
27
|
TimeAxisBaseDescription.prototype.get_type = function () {
|
|
@@ -29,10 +29,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
29
29
|
};
|
|
30
30
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "dateTimeMemberPath", {
|
|
31
31
|
get: function () {
|
|
32
|
-
return this.
|
|
32
|
+
return this.en;
|
|
33
33
|
},
|
|
34
34
|
set: function (a) {
|
|
35
|
-
this.
|
|
35
|
+
this.en = a;
|
|
36
36
|
this.g("DateTimeMemberPath");
|
|
37
37
|
},
|
|
38
38
|
enumerable: false,
|
|
@@ -40,10 +40,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
40
40
|
});
|
|
41
41
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "isDataPreSorted", {
|
|
42
42
|
get: function () {
|
|
43
|
-
return this.
|
|
43
|
+
return this.eb;
|
|
44
44
|
},
|
|
45
45
|
set: function (a) {
|
|
46
|
-
this.
|
|
46
|
+
this.eb = a;
|
|
47
47
|
this.g("IsDataPreSorted");
|
|
48
48
|
},
|
|
49
49
|
enumerable: false,
|
|
@@ -51,10 +51,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
51
51
|
});
|
|
52
52
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMinimumValue", {
|
|
53
53
|
get: function () {
|
|
54
|
-
return this.
|
|
54
|
+
return this.ee;
|
|
55
55
|
},
|
|
56
56
|
set: function (a) {
|
|
57
|
-
this.
|
|
57
|
+
this.ee = a;
|
|
58
58
|
this.g("ActualMinimumValue");
|
|
59
59
|
},
|
|
60
60
|
enumerable: false,
|
|
@@ -62,10 +62,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62
62
|
});
|
|
63
63
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMaximumValue", {
|
|
64
64
|
get: function () {
|
|
65
|
-
return this.
|
|
65
|
+
return this.ed;
|
|
66
66
|
},
|
|
67
67
|
set: function (a) {
|
|
68
|
-
this.
|
|
68
|
+
this.ed = a;
|
|
69
69
|
this.g("ActualMaximumValue");
|
|
70
70
|
},
|
|
71
71
|
enumerable: false,
|
|
@@ -73,10 +73,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
73
73
|
});
|
|
74
74
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "minimumValue", {
|
|
75
75
|
get: function () {
|
|
76
|
-
return this.
|
|
76
|
+
return this.eg;
|
|
77
77
|
},
|
|
78
78
|
set: function (a) {
|
|
79
|
-
this.
|
|
79
|
+
this.eg = a;
|
|
80
80
|
this.g("MinimumValue");
|
|
81
81
|
},
|
|
82
82
|
enumerable: false,
|
|
@@ -84,10 +84,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
84
84
|
});
|
|
85
85
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "maximumValue", {
|
|
86
86
|
get: function () {
|
|
87
|
-
return this.
|
|
87
|
+
return this.ef;
|
|
88
88
|
},
|
|
89
89
|
set: function (a) {
|
|
90
|
-
this.
|
|
90
|
+
this.ef = a;
|
|
91
91
|
this.g("MaximumValue");
|
|
92
92
|
},
|
|
93
93
|
enumerable: false,
|
|
@@ -95,10 +95,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
95
95
|
});
|
|
96
96
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMinimumValueChangeRef", {
|
|
97
97
|
get: function () {
|
|
98
|
-
return this.
|
|
98
|
+
return this.em;
|
|
99
99
|
},
|
|
100
100
|
set: function (a) {
|
|
101
|
-
this.
|
|
101
|
+
this.em = a;
|
|
102
102
|
this.g("ActualMinimumValueChangeRef");
|
|
103
103
|
},
|
|
104
104
|
enumerable: false,
|
|
@@ -106,10 +106,10 @@ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
106
106
|
});
|
|
107
107
|
Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMaximumValueChangeRef", {
|
|
108
108
|
get: function () {
|
|
109
|
-
return this.
|
|
109
|
+
return this.el;
|
|
110
110
|
},
|
|
111
111
|
set: function (a) {
|
|
112
|
-
this.
|
|
112
|
+
this.el = a;
|
|
113
113
|
this.g("ActualMaximumValueChangeRef");
|
|
114
114
|
},
|
|
115
115
|
enumerable: false,
|
|
@@ -14,10 +14,10 @@ var TimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(TimeXAxisDescription, _super);
|
|
15
15
|
function TimeXAxisDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.
|
|
18
|
-
_this.
|
|
19
|
-
_this.
|
|
20
|
-
_this.
|
|
17
|
+
_this.er = null;
|
|
18
|
+
_this.ex = null;
|
|
19
|
+
_this.et = null;
|
|
20
|
+
_this.es = null;
|
|
21
21
|
return _this;
|
|
22
22
|
}
|
|
23
23
|
TimeXAxisDescription.prototype.get_type = function () {
|
|
@@ -25,10 +25,10 @@ var TimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
25
25
|
};
|
|
26
26
|
Object.defineProperty(TimeXAxisDescription.prototype, "breaks", {
|
|
27
27
|
get: function () {
|
|
28
|
-
return this.
|
|
28
|
+
return this.er;
|
|
29
29
|
},
|
|
30
30
|
set: function (a) {
|
|
31
|
-
this.
|
|
31
|
+
this.er = a;
|
|
32
32
|
this.g("Breaks");
|
|
33
33
|
},
|
|
34
34
|
enumerable: false,
|
|
@@ -36,10 +36,10 @@ var TimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
36
36
|
});
|
|
37
37
|
Object.defineProperty(TimeXAxisDescription.prototype, "labellingMode", {
|
|
38
38
|
get: function () {
|
|
39
|
-
return this.
|
|
39
|
+
return this.ex;
|
|
40
40
|
},
|
|
41
41
|
set: function (a) {
|
|
42
|
-
this.
|
|
42
|
+
this.ex = a;
|
|
43
43
|
this.g("LabellingMode");
|
|
44
44
|
},
|
|
45
45
|
enumerable: false,
|
|
@@ -47,10 +47,10 @@ var TimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
47
47
|
});
|
|
48
48
|
Object.defineProperty(TimeXAxisDescription.prototype, "labelFormats", {
|
|
49
49
|
get: function () {
|
|
50
|
-
return this.
|
|
50
|
+
return this.et;
|
|
51
51
|
},
|
|
52
52
|
set: function (a) {
|
|
53
|
-
this.
|
|
53
|
+
this.et = a;
|
|
54
54
|
this.g("LabelFormats");
|
|
55
55
|
},
|
|
56
56
|
enumerable: false,
|
|
@@ -58,10 +58,10 @@ var TimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
58
58
|
});
|
|
59
59
|
Object.defineProperty(TimeXAxisDescription.prototype, "intervals", {
|
|
60
60
|
get: function () {
|
|
61
|
-
return this.
|
|
61
|
+
return this.es;
|
|
62
62
|
},
|
|
63
63
|
set: function (a) {
|
|
64
|
-
this.
|
|
64
|
+
this.es = a;
|
|
65
65
|
this.g("Intervals");
|
|
66
66
|
},
|
|
67
67
|
enumerable: false,
|