igniteui-angular-core 19.1.0 → 20.0.0-beta.1
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 -5
|
@@ -81,7 +81,11 @@ export let RadialBaseChartDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
81
81
|
a.item("AngleAxisLabelAngle", "Number:double");
|
|
82
82
|
a.item("ValueAxisLabelAngle", "Number:double");
|
|
83
83
|
a.item("AngleAxisExtent", "Number:double");
|
|
84
|
+
a.item("AngleAxisMaximumExtent", "Number:double");
|
|
85
|
+
a.item("AngleAxisMaximumExtentPercentage", "Number:double");
|
|
84
86
|
a.item("ValueAxisExtent", "Number:double");
|
|
87
|
+
a.item("ValueAxisMaximumExtent", "Number:double");
|
|
88
|
+
a.item("ValueAxisMaximumExtentPercentage", "Number:double");
|
|
85
89
|
a.item("AngleAxisTitleAngle", "Number:double");
|
|
86
90
|
a.item("ValueAxisTitleAngle", "Number:double");
|
|
87
91
|
a.item("AngleAxisInverted", "Boolean");
|
|
@@ -13,16 +13,16 @@ export let StraightNumericAxisBaseDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class StraightNumericAxisBaseDescription extends NumericAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
16
|
+
this.ff = null;
|
|
17
17
|
}
|
|
18
18
|
get_type() {
|
|
19
19
|
return "StraightNumericAxisBase";
|
|
20
20
|
}
|
|
21
21
|
get scaleMode() {
|
|
22
|
-
return this.
|
|
22
|
+
return this.ff;
|
|
23
23
|
}
|
|
24
24
|
set scaleMode(a) {
|
|
25
|
-
this.
|
|
25
|
+
this.ff = a;
|
|
26
26
|
this.g("ScaleMode");
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -13,72 +13,72 @@ export let TimeAxisBaseDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class TimeAxisBaseDescription extends CategoryAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
16
|
+
this.en = null;
|
|
17
|
+
this.eb = false;
|
|
18
|
+
this.ee = new Date();
|
|
19
|
+
this.ed = new Date();
|
|
20
|
+
this.eg = new Date();
|
|
21
|
+
this.ef = new Date();
|
|
22
|
+
this.em = null;
|
|
23
|
+
this.el = null;
|
|
24
24
|
}
|
|
25
25
|
get_type() {
|
|
26
26
|
return "TimeAxisBase";
|
|
27
27
|
}
|
|
28
28
|
get dateTimeMemberPath() {
|
|
29
|
-
return this.
|
|
29
|
+
return this.en;
|
|
30
30
|
}
|
|
31
31
|
set dateTimeMemberPath(a) {
|
|
32
|
-
this.
|
|
32
|
+
this.en = a;
|
|
33
33
|
this.g("DateTimeMemberPath");
|
|
34
34
|
}
|
|
35
35
|
get isDataPreSorted() {
|
|
36
|
-
return this.
|
|
36
|
+
return this.eb;
|
|
37
37
|
}
|
|
38
38
|
set isDataPreSorted(a) {
|
|
39
|
-
this.
|
|
39
|
+
this.eb = a;
|
|
40
40
|
this.g("IsDataPreSorted");
|
|
41
41
|
}
|
|
42
42
|
get actualMinimumValue() {
|
|
43
|
-
return this.
|
|
43
|
+
return this.ee;
|
|
44
44
|
}
|
|
45
45
|
set actualMinimumValue(a) {
|
|
46
|
-
this.
|
|
46
|
+
this.ee = a;
|
|
47
47
|
this.g("ActualMinimumValue");
|
|
48
48
|
}
|
|
49
49
|
get actualMaximumValue() {
|
|
50
|
-
return this.
|
|
50
|
+
return this.ed;
|
|
51
51
|
}
|
|
52
52
|
set actualMaximumValue(a) {
|
|
53
|
-
this.
|
|
53
|
+
this.ed = a;
|
|
54
54
|
this.g("ActualMaximumValue");
|
|
55
55
|
}
|
|
56
56
|
get minimumValue() {
|
|
57
|
-
return this.
|
|
57
|
+
return this.eg;
|
|
58
58
|
}
|
|
59
59
|
set minimumValue(a) {
|
|
60
|
-
this.
|
|
60
|
+
this.eg = a;
|
|
61
61
|
this.g("MinimumValue");
|
|
62
62
|
}
|
|
63
63
|
get maximumValue() {
|
|
64
|
-
return this.
|
|
64
|
+
return this.ef;
|
|
65
65
|
}
|
|
66
66
|
set maximumValue(a) {
|
|
67
|
-
this.
|
|
67
|
+
this.ef = a;
|
|
68
68
|
this.g("MaximumValue");
|
|
69
69
|
}
|
|
70
70
|
get actualMinimumValueChangeRef() {
|
|
71
|
-
return this.
|
|
71
|
+
return this.em;
|
|
72
72
|
}
|
|
73
73
|
set actualMinimumValueChangeRef(a) {
|
|
74
|
-
this.
|
|
74
|
+
this.em = a;
|
|
75
75
|
this.g("ActualMinimumValueChangeRef");
|
|
76
76
|
}
|
|
77
77
|
get actualMaximumValueChangeRef() {
|
|
78
|
-
return this.
|
|
78
|
+
return this.el;
|
|
79
79
|
}
|
|
80
80
|
set actualMaximumValueChangeRef(a) {
|
|
81
|
-
this.
|
|
81
|
+
this.el = a;
|
|
82
82
|
this.g("ActualMaximumValueChangeRef");
|
|
83
83
|
}
|
|
84
84
|
}
|
|
@@ -13,40 +13,40 @@ export let TimeXAxisDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class TimeXAxisDescription extends TimeAxisBaseDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
16
|
+
this.er = null;
|
|
17
|
+
this.ex = null;
|
|
18
|
+
this.et = null;
|
|
19
|
+
this.es = null;
|
|
20
20
|
}
|
|
21
21
|
get_type() {
|
|
22
22
|
return "TimeXAxis";
|
|
23
23
|
}
|
|
24
24
|
get breaks() {
|
|
25
|
-
return this.
|
|
25
|
+
return this.er;
|
|
26
26
|
}
|
|
27
27
|
set breaks(a) {
|
|
28
|
-
this.
|
|
28
|
+
this.er = a;
|
|
29
29
|
this.g("Breaks");
|
|
30
30
|
}
|
|
31
31
|
get labellingMode() {
|
|
32
|
-
return this.
|
|
32
|
+
return this.ex;
|
|
33
33
|
}
|
|
34
34
|
set labellingMode(a) {
|
|
35
|
-
this.
|
|
35
|
+
this.ex = a;
|
|
36
36
|
this.g("LabellingMode");
|
|
37
37
|
}
|
|
38
38
|
get labelFormats() {
|
|
39
|
-
return this.
|
|
39
|
+
return this.et;
|
|
40
40
|
}
|
|
41
41
|
set labelFormats(a) {
|
|
42
|
-
this.
|
|
42
|
+
this.et = a;
|
|
43
43
|
this.g("LabelFormats");
|
|
44
44
|
}
|
|
45
45
|
get intervals() {
|
|
46
|
-
return this.
|
|
46
|
+
return this.es;
|
|
47
47
|
}
|
|
48
48
|
set intervals(a) {
|
|
49
|
-
this.
|
|
49
|
+
this.es = a;
|
|
50
50
|
this.g("Intervals");
|
|
51
51
|
}
|
|
52
52
|
}
|