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
|
@@ -13,72 +13,72 @@ export let CategoryDateTimeXAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class CategoryDateTimeXAxisDescription extends TimeAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
16
|
+
this.er = false;
|
|
17
|
+
this.e3 = null;
|
|
18
|
+
this.ev = 0;
|
|
19
|
+
this.et = 0;
|
|
20
|
+
this.ew = 0;
|
|
21
|
+
this.eu = 0;
|
|
22
|
+
this.e1 = null;
|
|
23
|
+
this.e2 = null;
|
|
24
24
|
}
|
|
25
25
|
get_type() {
|
|
26
26
|
return "CategoryDateTimeXAxis";
|
|
27
27
|
}
|
|
28
28
|
get unevenlySpacedLabels() {
|
|
29
|
-
return this.
|
|
29
|
+
return this.er;
|
|
30
30
|
}
|
|
31
31
|
set unevenlySpacedLabels(a) {
|
|
32
|
-
this.
|
|
32
|
+
this.er = a;
|
|
33
33
|
this.g("UnevenlySpacedLabels");
|
|
34
34
|
}
|
|
35
35
|
get displayType() {
|
|
36
|
-
return this.
|
|
36
|
+
return this.e3;
|
|
37
37
|
}
|
|
38
38
|
set displayType(a) {
|
|
39
|
-
this.
|
|
39
|
+
this.e3 = a;
|
|
40
40
|
this.g("DisplayType");
|
|
41
41
|
}
|
|
42
42
|
get interval() {
|
|
43
|
-
return this.
|
|
43
|
+
return this.ev;
|
|
44
44
|
}
|
|
45
45
|
set interval(a) {
|
|
46
|
-
this.
|
|
46
|
+
this.ev = a;
|
|
47
47
|
this.g("Interval");
|
|
48
48
|
}
|
|
49
49
|
get actualInterval() {
|
|
50
|
-
return this.
|
|
50
|
+
return this.et;
|
|
51
51
|
}
|
|
52
52
|
set actualInterval(a) {
|
|
53
|
-
this.
|
|
53
|
+
this.et = a;
|
|
54
54
|
this.g("ActualInterval");
|
|
55
55
|
}
|
|
56
56
|
get minorInterval() {
|
|
57
|
-
return this.
|
|
57
|
+
return this.ew;
|
|
58
58
|
}
|
|
59
59
|
set minorInterval(a) {
|
|
60
|
-
this.
|
|
60
|
+
this.ew = a;
|
|
61
61
|
this.g("MinorInterval");
|
|
62
62
|
}
|
|
63
63
|
get actualMinorInterval() {
|
|
64
|
-
return this.
|
|
64
|
+
return this.eu;
|
|
65
65
|
}
|
|
66
66
|
set actualMinorInterval(a) {
|
|
67
|
-
this.
|
|
67
|
+
this.eu = a;
|
|
68
68
|
this.g("ActualMinorInterval");
|
|
69
69
|
}
|
|
70
70
|
get actualIntervalChangeRef() {
|
|
71
|
-
return this.
|
|
71
|
+
return this.e1;
|
|
72
72
|
}
|
|
73
73
|
set actualIntervalChangeRef(a) {
|
|
74
|
-
this.
|
|
74
|
+
this.e1 = a;
|
|
75
75
|
this.g("ActualIntervalChangeRef");
|
|
76
76
|
}
|
|
77
77
|
get actualMinorIntervalChangeRef() {
|
|
78
|
-
return this.
|
|
78
|
+
return this.e2;
|
|
79
79
|
}
|
|
80
80
|
set actualMinorIntervalChangeRef(a) {
|
|
81
|
-
this.
|
|
81
|
+
this.e2 = a;
|
|
82
82
|
this.g("ActualMinorIntervalChangeRef");
|
|
83
83
|
}
|
|
84
84
|
}
|
|
@@ -13,96 +13,96 @@ export let CategoryXAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class CategoryXAxisDescription extends CategoryAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
16
|
+
this.ef = 0;
|
|
17
|
+
this.eg = 0;
|
|
18
|
+
this.eh = 0;
|
|
19
|
+
this.ei = 0;
|
|
20
|
+
this.ej = 0;
|
|
21
|
+
this.ed = 0;
|
|
20
22
|
this.eb = 0;
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
25
|
-
this.el = null;
|
|
26
|
-
this.em = null;
|
|
23
|
+
this.ee = 0;
|
|
24
|
+
this.ec = 0;
|
|
25
|
+
this.et = null;
|
|
26
|
+
this.eu = null;
|
|
27
27
|
}
|
|
28
28
|
get_type() {
|
|
29
29
|
return "CategoryXAxis";
|
|
30
30
|
}
|
|
31
31
|
get zoomMaximumCategoryRange() {
|
|
32
|
-
return this.
|
|
32
|
+
return this.ef;
|
|
33
33
|
}
|
|
34
34
|
set zoomMaximumCategoryRange(a) {
|
|
35
|
-
this.
|
|
35
|
+
this.ef = a;
|
|
36
36
|
this.g("ZoomMaximumCategoryRange");
|
|
37
37
|
}
|
|
38
38
|
get zoomMaximumItemSpan() {
|
|
39
|
-
return this.
|
|
39
|
+
return this.eg;
|
|
40
40
|
}
|
|
41
41
|
set zoomMaximumItemSpan(a) {
|
|
42
|
-
this.
|
|
42
|
+
this.eg = a;
|
|
43
43
|
this.g("ZoomMaximumItemSpan");
|
|
44
44
|
}
|
|
45
45
|
get zoomToCategoryRange() {
|
|
46
|
-
return this.
|
|
46
|
+
return this.eh;
|
|
47
47
|
}
|
|
48
48
|
set zoomToCategoryRange(a) {
|
|
49
|
-
this.
|
|
49
|
+
this.eh = a;
|
|
50
50
|
this.g("ZoomToCategoryRange");
|
|
51
51
|
}
|
|
52
52
|
get zoomToCategoryStart() {
|
|
53
|
-
return this.
|
|
53
|
+
return this.ei;
|
|
54
54
|
}
|
|
55
55
|
set zoomToCategoryStart(a) {
|
|
56
|
-
this.
|
|
56
|
+
this.ei = a;
|
|
57
57
|
this.g("ZoomToCategoryStart");
|
|
58
58
|
}
|
|
59
59
|
get zoomToItemSpan() {
|
|
60
|
-
return this.
|
|
60
|
+
return this.ej;
|
|
61
61
|
}
|
|
62
62
|
set zoomToItemSpan(a) {
|
|
63
|
-
this.
|
|
63
|
+
this.ej = a;
|
|
64
64
|
this.g("ZoomToItemSpan");
|
|
65
65
|
}
|
|
66
66
|
get interval() {
|
|
67
|
-
return this.
|
|
67
|
+
return this.ed;
|
|
68
68
|
}
|
|
69
69
|
set interval(a) {
|
|
70
|
-
this.
|
|
70
|
+
this.ed = a;
|
|
71
71
|
this.g("Interval");
|
|
72
72
|
}
|
|
73
73
|
get actualInterval() {
|
|
74
|
-
return this.
|
|
74
|
+
return this.eb;
|
|
75
75
|
}
|
|
76
76
|
set actualInterval(a) {
|
|
77
|
-
this.
|
|
77
|
+
this.eb = a;
|
|
78
78
|
this.g("ActualInterval");
|
|
79
79
|
}
|
|
80
80
|
get minorInterval() {
|
|
81
|
-
return this.
|
|
81
|
+
return this.ee;
|
|
82
82
|
}
|
|
83
83
|
set minorInterval(a) {
|
|
84
|
-
this.
|
|
84
|
+
this.ee = a;
|
|
85
85
|
this.g("MinorInterval");
|
|
86
86
|
}
|
|
87
87
|
get actualMinorInterval() {
|
|
88
|
-
return this.
|
|
88
|
+
return this.ec;
|
|
89
89
|
}
|
|
90
90
|
set actualMinorInterval(a) {
|
|
91
|
-
this.
|
|
91
|
+
this.ec = a;
|
|
92
92
|
this.g("ActualMinorInterval");
|
|
93
93
|
}
|
|
94
94
|
get actualIntervalChangeRef() {
|
|
95
|
-
return this.
|
|
95
|
+
return this.et;
|
|
96
96
|
}
|
|
97
97
|
set actualIntervalChangeRef(a) {
|
|
98
|
-
this.
|
|
98
|
+
this.et = a;
|
|
99
99
|
this.g("ActualIntervalChangeRef");
|
|
100
100
|
}
|
|
101
101
|
get actualMinorIntervalChangeRef() {
|
|
102
|
-
return this.
|
|
102
|
+
return this.eu;
|
|
103
103
|
}
|
|
104
104
|
set actualMinorIntervalChangeRef(a) {
|
|
105
|
-
this.
|
|
105
|
+
this.eu = a;
|
|
106
106
|
this.g("ActualMinorIntervalChangeRef");
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -13,96 +13,96 @@ export let CategoryYAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class CategoryYAxisDescription extends CategoryAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.d3 = 0;
|
|
18
|
-
this.d6 = 0;
|
|
19
|
-
this.d4 = 0;
|
|
20
|
-
this.d7 = 0;
|
|
21
|
-
this.d8 = 0;
|
|
22
|
-
this.d9 = 0;
|
|
23
|
-
this.ea = 0;
|
|
16
|
+
this.ed = 0;
|
|
24
17
|
this.eb = 0;
|
|
25
|
-
this.
|
|
26
|
-
this.
|
|
18
|
+
this.ee = 0;
|
|
19
|
+
this.ec = 0;
|
|
20
|
+
this.ef = 0;
|
|
21
|
+
this.eg = 0;
|
|
22
|
+
this.eh = 0;
|
|
23
|
+
this.ei = 0;
|
|
24
|
+
this.ej = 0;
|
|
25
|
+
this.et = null;
|
|
26
|
+
this.eu = null;
|
|
27
27
|
}
|
|
28
28
|
get_type() {
|
|
29
29
|
return "CategoryYAxis";
|
|
30
30
|
}
|
|
31
31
|
get interval() {
|
|
32
|
-
return this.
|
|
32
|
+
return this.ed;
|
|
33
33
|
}
|
|
34
34
|
set interval(a) {
|
|
35
|
-
this.
|
|
35
|
+
this.ed = a;
|
|
36
36
|
this.g("Interval");
|
|
37
37
|
}
|
|
38
38
|
get actualInterval() {
|
|
39
|
-
return this.
|
|
39
|
+
return this.eb;
|
|
40
40
|
}
|
|
41
41
|
set actualInterval(a) {
|
|
42
|
-
this.
|
|
42
|
+
this.eb = a;
|
|
43
43
|
this.g("ActualInterval");
|
|
44
44
|
}
|
|
45
45
|
get minorInterval() {
|
|
46
|
-
return this.
|
|
46
|
+
return this.ee;
|
|
47
47
|
}
|
|
48
48
|
set minorInterval(a) {
|
|
49
|
-
this.
|
|
49
|
+
this.ee = a;
|
|
50
50
|
this.g("MinorInterval");
|
|
51
51
|
}
|
|
52
52
|
get actualMinorInterval() {
|
|
53
|
-
return this.
|
|
53
|
+
return this.ec;
|
|
54
54
|
}
|
|
55
55
|
set actualMinorInterval(a) {
|
|
56
|
-
this.
|
|
56
|
+
this.ec = a;
|
|
57
57
|
this.g("ActualMinorInterval");
|
|
58
58
|
}
|
|
59
59
|
get zoomMaximumCategoryRange() {
|
|
60
|
-
return this.
|
|
60
|
+
return this.ef;
|
|
61
61
|
}
|
|
62
62
|
set zoomMaximumCategoryRange(a) {
|
|
63
|
-
this.
|
|
63
|
+
this.ef = a;
|
|
64
64
|
this.g("ZoomMaximumCategoryRange");
|
|
65
65
|
}
|
|
66
66
|
get zoomMaximumItemSpan() {
|
|
67
|
-
return this.
|
|
67
|
+
return this.eg;
|
|
68
68
|
}
|
|
69
69
|
set zoomMaximumItemSpan(a) {
|
|
70
|
-
this.
|
|
70
|
+
this.eg = a;
|
|
71
71
|
this.g("ZoomMaximumItemSpan");
|
|
72
72
|
}
|
|
73
73
|
get zoomToCategoryRange() {
|
|
74
|
-
return this.
|
|
74
|
+
return this.eh;
|
|
75
75
|
}
|
|
76
76
|
set zoomToCategoryRange(a) {
|
|
77
|
-
this.
|
|
77
|
+
this.eh = a;
|
|
78
78
|
this.g("ZoomToCategoryRange");
|
|
79
79
|
}
|
|
80
80
|
get zoomToCategoryStart() {
|
|
81
|
-
return this.
|
|
81
|
+
return this.ei;
|
|
82
82
|
}
|
|
83
83
|
set zoomToCategoryStart(a) {
|
|
84
|
-
this.
|
|
84
|
+
this.ei = a;
|
|
85
85
|
this.g("ZoomToCategoryStart");
|
|
86
86
|
}
|
|
87
87
|
get zoomToItemSpan() {
|
|
88
|
-
return this.
|
|
88
|
+
return this.ej;
|
|
89
89
|
}
|
|
90
90
|
set zoomToItemSpan(a) {
|
|
91
|
-
this.
|
|
91
|
+
this.ej = a;
|
|
92
92
|
this.g("ZoomToItemSpan");
|
|
93
93
|
}
|
|
94
94
|
get actualIntervalChangeRef() {
|
|
95
|
-
return this.
|
|
95
|
+
return this.et;
|
|
96
96
|
}
|
|
97
97
|
set actualIntervalChangeRef(a) {
|
|
98
|
-
this.
|
|
98
|
+
this.et = a;
|
|
99
99
|
this.g("ActualIntervalChangeRef");
|
|
100
100
|
}
|
|
101
101
|
get actualMinorIntervalChangeRef() {
|
|
102
|
-
return this.
|
|
102
|
+
return this.eu;
|
|
103
103
|
}
|
|
104
104
|
set actualMinorIntervalChangeRef(a) {
|
|
105
|
-
this.
|
|
105
|
+
this.eu = a;
|
|
106
106
|
this.g("ActualMinorIntervalChangeRef");
|
|
107
107
|
}
|
|
108
108
|
}
|