@sapui5/sap.viz 1.131.1 → 1.133.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/package.json +1 -1
- package/src/sap/viz/.library +1 -1
- package/src/sap/viz/library.js +184 -41
- package/src/sap/viz/libs/sap-viz-info-charts.js +8 -3
- package/src/sap/viz/libs/sap-viz-info-framework.js +8 -2
- package/src/sap/viz/themes/base/shared.less +7 -0
- package/src/sap/viz/ui5/core/BaseChartMetadata.js +1 -1
- package/src/sap/viz/ui5/messages/messagebundle_en_US_saptrc.properties +2 -2
package/package.json
CHANGED
package/src/sap/viz/.library
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
* (c) Copyright 2009-2024 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.
|
|
8
|
+
<version>1.133.0</version>
|
|
9
9
|
|
|
10
10
|
<documentation>Chart controls based on the SAP BI CVOM charting library</documentation>
|
|
11
11
|
|
package/src/sap/viz/library.js
CHANGED
|
@@ -7,47 +7,66 @@
|
|
|
7
7
|
* Initialization Code and shared classes of library sap.viz.
|
|
8
8
|
*/
|
|
9
9
|
sap.ui.define([
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
10
|
+
"sap/base/Log",
|
|
11
|
+
"sap/base/i18n/Formatting",
|
|
12
|
+
"sap/base/i18n/Localization",
|
|
13
|
+
"sap/base/i18n/date/CalendarWeekNumbering",
|
|
14
|
+
"sap/base/util/ObjectPath",
|
|
15
|
+
"sap/ui/Device",
|
|
16
|
+
"sap/ui/base/DataType",
|
|
17
|
+
"sap/ui/core/Lib",
|
|
18
|
+
"sap/ui/core/Theming",
|
|
19
|
+
"sap/ui/core/date/UI5Date",
|
|
20
|
+
"sap/ui/core/date/UniversalDate",
|
|
21
|
+
"sap/ui/core/date/UniversalDateUtils",
|
|
22
|
+
"sap/ui/core/date/CalendarUtils",
|
|
23
|
+
"sap/ui/core/format/TimezoneUtil",
|
|
24
|
+
"sap/ui/core/theming/Parameters",
|
|
25
|
+
"sap/ui/thirdparty/jquery",
|
|
26
|
+
"sap/viz/libs/CssPlugin",
|
|
27
|
+
'sap/viz/ui5/format/ChartFormatter',
|
|
28
|
+
'sap/viz/ui5/api/env/Format',
|
|
29
|
+
// library dependency
|
|
30
|
+
"sap/ui/core/library",
|
|
31
|
+
"sap/ui/thirdparty/d3",
|
|
32
|
+
// TODO get rid of this (but see BCP 2070358415 first)
|
|
33
|
+
"sap/ui/thirdparty/jqueryui/jquery-ui-core",
|
|
34
|
+
// TODO get rid of this (but see BCP 2070358415 first)
|
|
35
|
+
"sap/ui/thirdparty/jqueryui/jquery-ui-widget",
|
|
36
|
+
// TODO get rid of this (but see BCP 2070358415 first)
|
|
37
|
+
"sap/ui/thirdparty/jqueryui/jquery-ui-mouse",
|
|
38
|
+
// TODO get rid of this (but see BCP 2070358415 first)
|
|
39
|
+
"sap/ui/thirdparty/jqueryui/jquery-ui-draggable",
|
|
40
|
+
// TODO get rid of this (but see BCP 2070358415 first)
|
|
41
|
+
"sap/ui/thirdparty/jqueryui/jquery-ui-droppable",
|
|
42
|
+
"sap/viz/libs/canvg",
|
|
43
|
+
"sap/viz/libs/rgbcolor",
|
|
44
|
+
"sap/viz/libs/sap-viz-info-framework",
|
|
45
|
+
"sap/viz/libs/sap-viz-info-charts",
|
|
46
|
+
"sap/viz/resources/chart/templates/standard_fiori/template",
|
|
47
|
+
"sap/viz/ui5/controls/libs/sap-viz-vizframe/sap-viz-vizframe",
|
|
48
|
+
"sap/viz/ui5/controls/libs/sap-viz-vizservices/sap-viz-vizservices",
|
|
49
|
+
"sap/ui/thirdparty/require"
|
|
49
50
|
],
|
|
50
|
-
function(
|
|
51
|
+
function(
|
|
52
|
+
Log,
|
|
53
|
+
Formatting,
|
|
54
|
+
Localization,
|
|
55
|
+
CalendarWeekNumbering,
|
|
56
|
+
ObjectPath,
|
|
57
|
+
Device,
|
|
58
|
+
DataType,
|
|
59
|
+
Library,
|
|
60
|
+
Theming,
|
|
61
|
+
UI5Date,
|
|
62
|
+
UniversalDate,
|
|
63
|
+
UniversalDateUtils,
|
|
64
|
+
CalendarUtils,
|
|
65
|
+
TimezoneUtil,
|
|
66
|
+
Parameters,
|
|
67
|
+
jQuery,
|
|
68
|
+
CssPlugin
|
|
69
|
+
) {
|
|
51
70
|
"use strict";
|
|
52
71
|
|
|
53
72
|
/**
|
|
@@ -59,6 +78,7 @@ sap.ui.define([
|
|
|
59
78
|
*/
|
|
60
79
|
const thisLib = Library.init({
|
|
61
80
|
name : "sap.viz",
|
|
81
|
+
apiVersion: 2,
|
|
62
82
|
dependencies : ["sap.ui.core"],
|
|
63
83
|
types: [
|
|
64
84
|
//@@begin generated-types-list
|
|
@@ -263,7 +283,7 @@ sap.ui.define([
|
|
|
263
283
|
|
|
264
284
|
//@@end generated-elements-list
|
|
265
285
|
],
|
|
266
|
-
version: "1.
|
|
286
|
+
version: "1.133.0"
|
|
267
287
|
});
|
|
268
288
|
|
|
269
289
|
//@@begin generated-enums
|
|
@@ -299,6 +319,9 @@ sap.ui.define([
|
|
|
299
319
|
*/
|
|
300
320
|
glossy : "glossy"
|
|
301
321
|
};
|
|
322
|
+
/** @deprecated Since version 1.32.0. */
|
|
323
|
+
DataType.registerEnum("sap.viz.ui5.types.Area_drawingEffect", thisLib.ui5.types.Area_drawingEffect);
|
|
324
|
+
|
|
302
325
|
/**
|
|
303
326
|
* List (Enum) type sap.viz.ui5.types.Area_marker_shape
|
|
304
327
|
*
|
|
@@ -367,6 +390,9 @@ sap.ui.define([
|
|
|
367
390
|
*/
|
|
368
391
|
intersection : "intersection"
|
|
369
392
|
};
|
|
393
|
+
/** @deprecated Since version 1.32.0. */
|
|
394
|
+
DataType.registerEnum("sap.viz.ui5.types.Area_marker_shape", thisLib.ui5.types.Area_marker_shape);
|
|
395
|
+
|
|
370
396
|
/**
|
|
371
397
|
* List (Enum) type sap.viz.ui5.types.Area_mode
|
|
372
398
|
*
|
|
@@ -399,6 +425,9 @@ sap.ui.define([
|
|
|
399
425
|
*/
|
|
400
426
|
percentage : "percentage"
|
|
401
427
|
};
|
|
428
|
+
/** @deprecated Since version 1.32.0. */
|
|
429
|
+
DataType.registerEnum("sap.viz.ui5.types.Area_mode", thisLib.ui5.types.Area_mode);
|
|
430
|
+
|
|
402
431
|
/**
|
|
403
432
|
* List (Enum) type sap.viz.ui5.types.Area_orientation
|
|
404
433
|
*
|
|
@@ -431,6 +460,9 @@ sap.ui.define([
|
|
|
431
460
|
*/
|
|
432
461
|
horizontal : "horizontal"
|
|
433
462
|
};
|
|
463
|
+
/** @deprecated Since version 1.32.0. */
|
|
464
|
+
DataType.registerEnum("sap.viz.ui5.types.Area_orientation", thisLib.ui5.types.Area_orientation);
|
|
465
|
+
|
|
434
466
|
/**
|
|
435
467
|
* List (Enum) type sap.viz.ui5.types.Axis_gridline_type
|
|
436
468
|
*
|
|
@@ -469,6 +501,9 @@ sap.ui.define([
|
|
|
469
501
|
*/
|
|
470
502
|
incised : "incised"
|
|
471
503
|
};
|
|
504
|
+
/** @deprecated Since version 1.32.0. */
|
|
505
|
+
DataType.registerEnum("sap.viz.ui5.types.Axis_gridline_type", thisLib.ui5.types.Axis_gridline_type);
|
|
506
|
+
|
|
472
507
|
/**
|
|
473
508
|
* List (Enum) type sap.viz.ui5.types.Axis_label_unitFormatType
|
|
474
509
|
*
|
|
@@ -501,6 +536,9 @@ sap.ui.define([
|
|
|
501
536
|
*/
|
|
502
537
|
FinancialUnits : "FinancialUnits"
|
|
503
538
|
};
|
|
539
|
+
/** @deprecated Since version 1.32.0. */
|
|
540
|
+
DataType.registerEnum("sap.viz.ui5.types.Axis_label_unitFormatType", thisLib.ui5.types.Axis_label_unitFormatType);
|
|
541
|
+
|
|
504
542
|
/**
|
|
505
543
|
* List (Enum) type sap.viz.ui5.types.Axis_position
|
|
506
544
|
*
|
|
@@ -545,6 +583,9 @@ sap.ui.define([
|
|
|
545
583
|
*/
|
|
546
584
|
bottom : "bottom"
|
|
547
585
|
};
|
|
586
|
+
/** @deprecated Since version 1.32.0. */
|
|
587
|
+
DataType.registerEnum("sap.viz.ui5.types.Axis_position", thisLib.ui5.types.Axis_position);
|
|
588
|
+
|
|
548
589
|
/**
|
|
549
590
|
* List (Enum) type sap.viz.ui5.types.Axis_type
|
|
550
591
|
*
|
|
@@ -583,6 +624,9 @@ sap.ui.define([
|
|
|
583
624
|
*/
|
|
584
625
|
timeValue : "timeValue"
|
|
585
626
|
};
|
|
627
|
+
/** @deprecated Since version 1.32.0. */
|
|
628
|
+
DataType.registerEnum("sap.viz.ui5.types.Axis_type", thisLib.ui5.types.Axis_type);
|
|
629
|
+
|
|
586
630
|
/**
|
|
587
631
|
* List (Enum) type sap.viz.ui5.types.Background_direction
|
|
588
632
|
*
|
|
@@ -615,6 +659,9 @@ sap.ui.define([
|
|
|
615
659
|
*/
|
|
616
660
|
vertical : "vertical"
|
|
617
661
|
};
|
|
662
|
+
/** @deprecated Since version 1.32.0. */
|
|
663
|
+
DataType.registerEnum("sap.viz.ui5.types.Background_direction", thisLib.ui5.types.Background_direction);
|
|
664
|
+
|
|
618
665
|
/**
|
|
619
666
|
* List (Enum) type sap.viz.ui5.types.Background_drawingEffect
|
|
620
667
|
*
|
|
@@ -647,6 +694,9 @@ sap.ui.define([
|
|
|
647
694
|
*/
|
|
648
695
|
glossy : "glossy"
|
|
649
696
|
};
|
|
697
|
+
/** @deprecated Since version 1.32.0. */
|
|
698
|
+
DataType.registerEnum("sap.viz.ui5.types.Background_drawingEffect", thisLib.ui5.types.Background_drawingEffect);
|
|
699
|
+
|
|
650
700
|
/**
|
|
651
701
|
* List (Enum) type sap.viz.ui5.types.Bar_drawingEffect
|
|
652
702
|
*
|
|
@@ -679,6 +729,9 @@ sap.ui.define([
|
|
|
679
729
|
*/
|
|
680
730
|
glossy : "glossy"
|
|
681
731
|
};
|
|
732
|
+
/** @deprecated Since version 1.32.0. */
|
|
733
|
+
DataType.registerEnum("sap.viz.ui5.types.Bar_drawingEffect", thisLib.ui5.types.Bar_drawingEffect);
|
|
734
|
+
|
|
682
735
|
/**
|
|
683
736
|
* List (Enum) type sap.viz.ui5.types.Bar_orientation
|
|
684
737
|
*
|
|
@@ -711,6 +764,9 @@ sap.ui.define([
|
|
|
711
764
|
*/
|
|
712
765
|
vertical : "vertical"
|
|
713
766
|
};
|
|
767
|
+
/** @deprecated Since version 1.32.0. */
|
|
768
|
+
DataType.registerEnum("sap.viz.ui5.types.Bar_orientation", thisLib.ui5.types.Bar_orientation);
|
|
769
|
+
|
|
714
770
|
/**
|
|
715
771
|
* List (Enum) type sap.viz.ui5.types.Bubble_drawingEffect
|
|
716
772
|
*
|
|
@@ -743,6 +799,9 @@ sap.ui.define([
|
|
|
743
799
|
*/
|
|
744
800
|
glossy : "glossy"
|
|
745
801
|
};
|
|
802
|
+
/** @deprecated Since version 1.32.0. */
|
|
803
|
+
DataType.registerEnum("sap.viz.ui5.types.Bubble_drawingEffect", thisLib.ui5.types.Bubble_drawingEffect);
|
|
804
|
+
|
|
746
805
|
/**
|
|
747
806
|
* List (Enum) type sap.viz.ui5.types.Bullet_drawingEffect
|
|
748
807
|
*
|
|
@@ -775,6 +834,9 @@ sap.ui.define([
|
|
|
775
834
|
*/
|
|
776
835
|
glossy : "glossy"
|
|
777
836
|
};
|
|
837
|
+
/** @deprecated Since version 1.32.0. */
|
|
838
|
+
DataType.registerEnum("sap.viz.ui5.types.Bullet_drawingEffect", thisLib.ui5.types.Bullet_drawingEffect);
|
|
839
|
+
|
|
778
840
|
/**
|
|
779
841
|
* List (Enum) type sap.viz.ui5.types.Bullet_orientation
|
|
780
842
|
*
|
|
@@ -807,6 +869,9 @@ sap.ui.define([
|
|
|
807
869
|
*/
|
|
808
870
|
vertical : "vertical"
|
|
809
871
|
};
|
|
872
|
+
/** @deprecated Since version 1.32.0. */
|
|
873
|
+
DataType.registerEnum("sap.viz.ui5.types.Bullet_orientation", thisLib.ui5.types.Bullet_orientation);
|
|
874
|
+
|
|
810
875
|
/**
|
|
811
876
|
* List (Enum) type sap.viz.ui5.types.Combination_drawingEffect
|
|
812
877
|
*
|
|
@@ -839,6 +904,9 @@ sap.ui.define([
|
|
|
839
904
|
*/
|
|
840
905
|
glossy : "glossy"
|
|
841
906
|
};
|
|
907
|
+
/** @deprecated Since version 1.32.0. */
|
|
908
|
+
DataType.registerEnum("sap.viz.ui5.types.Combination_drawingEffect", thisLib.ui5.types.Combination_drawingEffect);
|
|
909
|
+
|
|
842
910
|
/**
|
|
843
911
|
* List (Enum) type sap.viz.ui5.types.Combination_orientation
|
|
844
912
|
*
|
|
@@ -871,6 +939,9 @@ sap.ui.define([
|
|
|
871
939
|
*/
|
|
872
940
|
vertical : "vertical"
|
|
873
941
|
};
|
|
942
|
+
/** @deprecated Since version 1.32.0. */
|
|
943
|
+
DataType.registerEnum("sap.viz.ui5.types.Combination_orientation", thisLib.ui5.types.Combination_orientation);
|
|
944
|
+
|
|
874
945
|
/**
|
|
875
946
|
* List (Enum) type sap.viz.ui5.types.Datalabel_orientation
|
|
876
947
|
*
|
|
@@ -903,6 +974,9 @@ sap.ui.define([
|
|
|
903
974
|
*/
|
|
904
975
|
vertical : "vertical"
|
|
905
976
|
};
|
|
977
|
+
/** @deprecated Since version 1.32.0. */
|
|
978
|
+
DataType.registerEnum("sap.viz.ui5.types.Datalabel_orientation", thisLib.ui5.types.Datalabel_orientation);
|
|
979
|
+
|
|
906
980
|
/**
|
|
907
981
|
* List (Enum) type sap.viz.ui5.types.Datalabel_outsidePosition
|
|
908
982
|
*
|
|
@@ -947,6 +1021,9 @@ sap.ui.define([
|
|
|
947
1021
|
*/
|
|
948
1022
|
right : "right"
|
|
949
1023
|
};
|
|
1024
|
+
/** @deprecated Since version 1.32.0. */
|
|
1025
|
+
DataType.registerEnum("sap.viz.ui5.types.Datalabel_outsidePosition", thisLib.ui5.types.Datalabel_outsidePosition);
|
|
1026
|
+
|
|
950
1027
|
/**
|
|
951
1028
|
* List (Enum) type sap.viz.ui5.types.Datalabel_paintingMode
|
|
952
1029
|
*
|
|
@@ -979,6 +1056,9 @@ sap.ui.define([
|
|
|
979
1056
|
*/
|
|
980
1057
|
polarCoordinate : "polarCoordinate"
|
|
981
1058
|
};
|
|
1059
|
+
/** @deprecated Since version 1.32.0. */
|
|
1060
|
+
DataType.registerEnum("sap.viz.ui5.types.Datalabel_paintingMode", thisLib.ui5.types.Datalabel_paintingMode);
|
|
1061
|
+
|
|
982
1062
|
/**
|
|
983
1063
|
* List (Enum) type sap.viz.ui5.types.Datalabel_position
|
|
984
1064
|
*
|
|
@@ -1011,6 +1091,9 @@ sap.ui.define([
|
|
|
1011
1091
|
*/
|
|
1012
1092
|
outside : "outside"
|
|
1013
1093
|
};
|
|
1094
|
+
/** @deprecated Since version 1.32.0. */
|
|
1095
|
+
DataType.registerEnum("sap.viz.ui5.types.Datalabel_position", thisLib.ui5.types.Datalabel_position);
|
|
1096
|
+
|
|
1014
1097
|
/**
|
|
1015
1098
|
* List (Enum) type sap.viz.ui5.types.Legend_layout_position
|
|
1016
1099
|
*
|
|
@@ -1055,6 +1138,9 @@ sap.ui.define([
|
|
|
1055
1138
|
*/
|
|
1056
1139
|
left : "left"
|
|
1057
1140
|
};
|
|
1141
|
+
/** @deprecated Since version 1.32.0. */
|
|
1142
|
+
DataType.registerEnum("sap.viz.ui5.types.Legend_layout_position", thisLib.ui5.types.Legend_layout_position);
|
|
1143
|
+
|
|
1058
1144
|
/**
|
|
1059
1145
|
* List (Enum) type sap.viz.ui5.types.Line_drawingEffect
|
|
1060
1146
|
*
|
|
@@ -1087,6 +1173,9 @@ sap.ui.define([
|
|
|
1087
1173
|
*/
|
|
1088
1174
|
glossy : "glossy"
|
|
1089
1175
|
};
|
|
1176
|
+
/** @deprecated Since version 1.32.0. */
|
|
1177
|
+
DataType.registerEnum("sap.viz.ui5.types.Line_drawingEffect", thisLib.ui5.types.Line_drawingEffect);
|
|
1178
|
+
|
|
1090
1179
|
/**
|
|
1091
1180
|
* List (Enum) type sap.viz.ui5.types.Line_marker_shape
|
|
1092
1181
|
*
|
|
@@ -1155,6 +1244,9 @@ sap.ui.define([
|
|
|
1155
1244
|
*/
|
|
1156
1245
|
intersection : "intersection"
|
|
1157
1246
|
};
|
|
1247
|
+
/** @deprecated Since version 1.32.0. */
|
|
1248
|
+
DataType.registerEnum("sap.viz.ui5.types.Line_marker_shape", thisLib.ui5.types.Line_marker_shape);
|
|
1249
|
+
|
|
1158
1250
|
/**
|
|
1159
1251
|
* List (Enum) type sap.viz.ui5.types.Line_orientation
|
|
1160
1252
|
*
|
|
@@ -1187,6 +1279,9 @@ sap.ui.define([
|
|
|
1187
1279
|
*/
|
|
1188
1280
|
vertical : "vertical"
|
|
1189
1281
|
};
|
|
1282
|
+
/** @deprecated Since version 1.32.0. */
|
|
1283
|
+
DataType.registerEnum("sap.viz.ui5.types.Line_orientation", thisLib.ui5.types.Line_orientation);
|
|
1284
|
+
|
|
1190
1285
|
/**
|
|
1191
1286
|
* List (Enum) type sap.viz.ui5.types.Pie_drawingEffect
|
|
1192
1287
|
*
|
|
@@ -1219,6 +1314,9 @@ sap.ui.define([
|
|
|
1219
1314
|
*/
|
|
1220
1315
|
glossy : "glossy"
|
|
1221
1316
|
};
|
|
1317
|
+
/** @deprecated Since version 1.32.0. */
|
|
1318
|
+
DataType.registerEnum("sap.viz.ui5.types.Pie_drawingEffect", thisLib.ui5.types.Pie_drawingEffect);
|
|
1319
|
+
|
|
1222
1320
|
/**
|
|
1223
1321
|
* List (Enum) type sap.viz.ui5.types.Pie_valign
|
|
1224
1322
|
*
|
|
@@ -1251,6 +1349,9 @@ sap.ui.define([
|
|
|
1251
1349
|
*/
|
|
1252
1350
|
center : "center"
|
|
1253
1351
|
};
|
|
1352
|
+
/** @deprecated Since version 1.32.0. */
|
|
1353
|
+
DataType.registerEnum("sap.viz.ui5.types.Pie_valign", thisLib.ui5.types.Pie_valign);
|
|
1354
|
+
|
|
1254
1355
|
/**
|
|
1255
1356
|
* List (Enum) type sap.viz.ui5.types.Scatter_drawingEffect
|
|
1256
1357
|
*
|
|
@@ -1283,6 +1384,9 @@ sap.ui.define([
|
|
|
1283
1384
|
*/
|
|
1284
1385
|
glossy : "glossy"
|
|
1285
1386
|
};
|
|
1387
|
+
/** @deprecated Since version 1.32.0. */
|
|
1388
|
+
DataType.registerEnum("sap.viz.ui5.types.Scatter_drawingEffect", thisLib.ui5.types.Scatter_drawingEffect);
|
|
1389
|
+
|
|
1286
1390
|
/**
|
|
1287
1391
|
* List (Enum) type sap.viz.ui5.types.StackedVerticalBar_drawingEffect
|
|
1288
1392
|
*
|
|
@@ -1315,6 +1419,9 @@ sap.ui.define([
|
|
|
1315
1419
|
*/
|
|
1316
1420
|
glossy : "glossy"
|
|
1317
1421
|
};
|
|
1422
|
+
/** @deprecated Since version 1.32.0. */
|
|
1423
|
+
DataType.registerEnum("sap.viz.ui5.types.StackedVerticalBar_drawingEffect", thisLib.ui5.types.StackedVerticalBar_drawingEffect);
|
|
1424
|
+
|
|
1318
1425
|
/**
|
|
1319
1426
|
* List (Enum) type sap.viz.ui5.types.StackedVerticalBar_mode
|
|
1320
1427
|
*
|
|
@@ -1347,6 +1454,9 @@ sap.ui.define([
|
|
|
1347
1454
|
*/
|
|
1348
1455
|
percentage : "percentage"
|
|
1349
1456
|
};
|
|
1457
|
+
/** @deprecated Since version 1.32.0. */
|
|
1458
|
+
DataType.registerEnum("sap.viz.ui5.types.StackedVerticalBar_mode", thisLib.ui5.types.StackedVerticalBar_mode);
|
|
1459
|
+
|
|
1350
1460
|
/**
|
|
1351
1461
|
* List (Enum) type sap.viz.ui5.types.StackedVerticalBar_orientation
|
|
1352
1462
|
*
|
|
@@ -1379,6 +1489,9 @@ sap.ui.define([
|
|
|
1379
1489
|
*/
|
|
1380
1490
|
vertical : "vertical"
|
|
1381
1491
|
};
|
|
1492
|
+
/** @deprecated Since version 1.32.0. */
|
|
1493
|
+
DataType.registerEnum("sap.viz.ui5.types.StackedVerticalBar_orientation", thisLib.ui5.types.StackedVerticalBar_orientation);
|
|
1494
|
+
|
|
1382
1495
|
/**
|
|
1383
1496
|
* List (Enum) type sap.viz.ui5.types.Title_alignment
|
|
1384
1497
|
*
|
|
@@ -1417,6 +1530,9 @@ sap.ui.define([
|
|
|
1417
1530
|
*/
|
|
1418
1531
|
right : "right"
|
|
1419
1532
|
};
|
|
1533
|
+
/** @deprecated Since version 1.32.0. */
|
|
1534
|
+
DataType.registerEnum("sap.viz.ui5.types.Title_alignment", thisLib.ui5.types.Title_alignment);
|
|
1535
|
+
|
|
1420
1536
|
/**
|
|
1421
1537
|
* List (Enum) type sap.viz.ui5.types.Tooltip_drawingEffect
|
|
1422
1538
|
*
|
|
@@ -1449,6 +1565,9 @@ sap.ui.define([
|
|
|
1449
1565
|
*/
|
|
1450
1566
|
glossy : "glossy"
|
|
1451
1567
|
};
|
|
1568
|
+
/** @deprecated Since version 1.32.0. */
|
|
1569
|
+
DataType.registerEnum("sap.viz.ui5.types.Tooltip_drawingEffect", thisLib.ui5.types.Tooltip_drawingEffect);
|
|
1570
|
+
|
|
1452
1571
|
/**
|
|
1453
1572
|
* List (Enum) type sap.viz.ui5.types.VerticalBar_drawingEffect
|
|
1454
1573
|
*
|
|
@@ -1481,6 +1600,9 @@ sap.ui.define([
|
|
|
1481
1600
|
*/
|
|
1482
1601
|
glossy : "glossy"
|
|
1483
1602
|
};
|
|
1603
|
+
/** @deprecated Since version 1.32.0. */
|
|
1604
|
+
DataType.registerEnum("sap.viz.ui5.types.VerticalBar_drawingEffect", thisLib.ui5.types.VerticalBar_drawingEffect);
|
|
1605
|
+
|
|
1484
1606
|
/**
|
|
1485
1607
|
* List (Enum) type sap.viz.ui5.types.VerticalBar_orientation
|
|
1486
1608
|
*
|
|
@@ -1513,6 +1635,9 @@ sap.ui.define([
|
|
|
1513
1635
|
*/
|
|
1514
1636
|
vertical : "vertical"
|
|
1515
1637
|
};
|
|
1638
|
+
/** @deprecated Since version 1.32.0. */
|
|
1639
|
+
DataType.registerEnum("sap.viz.ui5.types.VerticalBar_orientation", thisLib.ui5.types.VerticalBar_orientation);
|
|
1640
|
+
|
|
1516
1641
|
/**
|
|
1517
1642
|
* List (Enum) type sap.viz.ui5.types.controller.Interaction_pan_orientation
|
|
1518
1643
|
*
|
|
@@ -1551,6 +1676,9 @@ sap.ui.define([
|
|
|
1551
1676
|
*/
|
|
1552
1677
|
both : "both"
|
|
1553
1678
|
};
|
|
1679
|
+
/** @deprecated Since version 1.32.0. */
|
|
1680
|
+
DataType.registerEnum("sap.viz.ui5.types.controller.Interaction_pan_orientation", thisLib.ui5.types.controller.Interaction_pan_orientation);
|
|
1681
|
+
|
|
1554
1682
|
/**
|
|
1555
1683
|
* List (Enum) type sap.viz.ui5.types.controller.Interaction_selectability_mode
|
|
1556
1684
|
*
|
|
@@ -1601,6 +1729,9 @@ sap.ui.define([
|
|
|
1601
1729
|
*/
|
|
1602
1730
|
none : "none"
|
|
1603
1731
|
};
|
|
1732
|
+
/** @deprecated Since version 1.32.0. */
|
|
1733
|
+
DataType.registerEnum("sap.viz.ui5.types.controller.Interaction_selectability_mode", thisLib.ui5.types.controller.Interaction_selectability_mode);
|
|
1734
|
+
|
|
1604
1735
|
/**
|
|
1605
1736
|
* List (Enum) type sap.viz.ui5.types.legend.Common_alignment
|
|
1606
1737
|
*
|
|
@@ -1639,6 +1770,9 @@ sap.ui.define([
|
|
|
1639
1770
|
*/
|
|
1640
1771
|
end : "end"
|
|
1641
1772
|
};
|
|
1773
|
+
/** @deprecated Since version 1.32.0. */
|
|
1774
|
+
DataType.registerEnum("sap.viz.ui5.types.legend.Common_alignment", thisLib.ui5.types.legend.Common_alignment);
|
|
1775
|
+
|
|
1642
1776
|
/**
|
|
1643
1777
|
* List (Enum) type sap.viz.ui5.types.legend.Common_drawingEffect
|
|
1644
1778
|
*
|
|
@@ -1671,6 +1805,9 @@ sap.ui.define([
|
|
|
1671
1805
|
*/
|
|
1672
1806
|
glossy : "glossy"
|
|
1673
1807
|
};
|
|
1808
|
+
/** @deprecated Since version 1.32.0. */
|
|
1809
|
+
DataType.registerEnum("sap.viz.ui5.types.legend.Common_drawingEffect", thisLib.ui5.types.legend.Common_drawingEffect);
|
|
1810
|
+
|
|
1674
1811
|
/**
|
|
1675
1812
|
* List (Enum) type sap.viz.ui5.types.legend.Common_position
|
|
1676
1813
|
*
|
|
@@ -1715,6 +1852,9 @@ sap.ui.define([
|
|
|
1715
1852
|
*/
|
|
1716
1853
|
left : "left"
|
|
1717
1854
|
};
|
|
1855
|
+
/** @deprecated Since version 1.32.0. */
|
|
1856
|
+
DataType.registerEnum("sap.viz.ui5.types.legend.Common_position", thisLib.ui5.types.legend.Common_position);
|
|
1857
|
+
|
|
1718
1858
|
/**
|
|
1719
1859
|
* List (Enum) type sap.viz.ui5.types.legend.Common_type
|
|
1720
1860
|
*
|
|
@@ -1759,6 +1899,9 @@ sap.ui.define([
|
|
|
1759
1899
|
*/
|
|
1760
1900
|
MeasureBasedColoringLegend : "MeasureBasedColoringLegend"
|
|
1761
1901
|
};
|
|
1902
|
+
/** @deprecated Since version 1.32.0. */
|
|
1903
|
+
DataType.registerEnum("sap.viz.ui5.types.legend.Common_type", thisLib.ui5.types.legend.Common_type);
|
|
1904
|
+
|
|
1762
1905
|
|
|
1763
1906
|
//@@end generated-enums
|
|
1764
1907
|
|
|
@@ -70880,12 +70880,17 @@ define('sap/viz/chart/components/plotareas/XYYPlotArea',[
|
|
|
70880
70880
|
XYYPlotArea.prototype._applyDefaultProperties = function(data) {
|
|
70881
70881
|
var semanticMgr = this.runtime().semanticManager();
|
|
70882
70882
|
if (semanticMgr.isOverrideMode() && semanticMgr.shouldChangeColor()) {
|
|
70883
|
-
var
|
|
70883
|
+
var axisColor;
|
|
70884
|
+
if (this._renderType === "timeseries_combination") {
|
|
70885
|
+
axisColor = this._properties.get("timeAxis.title.style.color", "templateValue");
|
|
70886
|
+
} else {
|
|
70887
|
+
axisColor = this._properties.get("categoryAxis.title.style.color", "templateValue");
|
|
70888
|
+
}
|
|
70884
70889
|
if (!this._properties.has("valueAxis.title.style.color", "value")) {
|
|
70885
|
-
this._properties.set("valueAxis.color",
|
|
70890
|
+
this._properties.set("valueAxis.color", axisColor, true, "templateValue");
|
|
70886
70891
|
}
|
|
70887
70892
|
if (!this._properties.has("valueAxis2.title.style.color", "value")) {
|
|
70888
|
-
this._properties.set("valueAxis2.color",
|
|
70893
|
+
this._properties.set("valueAxis2.color", axisColor, true, "templateValue");
|
|
70889
70894
|
}
|
|
70890
70895
|
} else {
|
|
70891
70896
|
this._properties.setDefault("valueAxis.color", data.color.scale.getRange()[0]);
|
|
@@ -5871,7 +5871,7 @@ define('sap/viz/framework/common/util/TimeUtil',[
|
|
|
5871
5871
|
var levelIdx = levels.indexOf(level);
|
|
5872
5872
|
var UTC;
|
|
5873
5873
|
if (level === 'Hours') {
|
|
5874
|
-
UTC = UI5Date ? 'UTC' : (utc ? 'UTC' : '');
|
|
5874
|
+
UTC = UI5Date && getIsIntegerTimeZone() ? 'UTC' : (utc ? 'UTC' : '');
|
|
5875
5875
|
} else {
|
|
5876
5876
|
UTC = utc ? 'UTC' : '';
|
|
5877
5877
|
}
|
|
@@ -6128,6 +6128,12 @@ define('sap/viz/framework/common/util/TimeUtil',[
|
|
|
6128
6128
|
var offset = utc ? 0 : (getDateInstance(0)).getTimezoneOffset() * ONE_MINUTE;
|
|
6129
6129
|
return offset;
|
|
6130
6130
|
}
|
|
6131
|
+
|
|
6132
|
+
function getIsIntegerTimeZone() {
|
|
6133
|
+
const offset = getDateInstance(0).getTimezoneOffset();
|
|
6134
|
+
const offsetHours = -offset / 60;
|
|
6135
|
+
return Number.isInteger(offsetHours);
|
|
6136
|
+
}
|
|
6131
6137
|
function hours(start, end, step, count, align, limit, pivot, utc) {
|
|
6132
6138
|
return values(start, end, step, count, ONE_HOUR, function(t, unit) {
|
|
6133
6139
|
var h = getHours(getDateInstance(t * unit), true);
|
|
@@ -13452,7 +13458,7 @@ define('sap/viz/framework/interaction/DesktopMonitor',[
|
|
|
13452
13458
|
}.bind(this));
|
|
13453
13459
|
}
|
|
13454
13460
|
} else {
|
|
13455
|
-
$(this._eventLayer.node()).mouseleave
|
|
13461
|
+
$(this._eventLayer.node()).on("mouseleave", this._mouseleave.bind(this));
|
|
13456
13462
|
}
|
|
13457
13463
|
|
|
13458
13464
|
this._divNode = this._eventLayer.node().parentNode;
|
|
@@ -254,6 +254,13 @@ Parameter which stored a long css setting string for cvom's chart's internal use
|
|
|
254
254
|
border-top: 1px rgba(153,153,153,0.6) solid;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
+
html.sap-desktop .viz-controls-chartPopover .sapMList.viz-controls-chartPopover-actionList .sapMLIB.sapMALI .sapMLIBContent{
|
|
258
|
+
padding: 0 1rem;
|
|
259
|
+
}
|
|
260
|
+
html.sap-desktop .viz-controls-chartPopover .viz-controls-chartPopover-subActionItemsPage .sapMList .sapMLIB.sapMALI .sapMLIBContent{
|
|
261
|
+
padding: 0 1rem;
|
|
262
|
+
}
|
|
263
|
+
|
|
257
264
|
.viz-controls-chartPopover .viz-controls-chartPopover-actionList li:first-child{
|
|
258
265
|
border-top: 1px rgb(229, 229, 229) solid;
|
|
259
266
|
}
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
#
|
|
3
3
|
|
|
4
4
|
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
5
|
-
NO_SVG_SUPPORT
|
|
5
|
+
NO_SVG_SUPPORT=/esKvi72YmOpL37Czww9UA_No SVG support
|
|
6
6
|
#XMSG: Default text which is displayed when no data is available for rendering
|
|
7
|
-
NO_DATA=
|
|
7
|
+
NO_DATA=pGD8e7Vy+pm8QizXaEYbCA_No data
|