@progress/kendo-charts 1.27.1 → 1.28.0-dev.202303070933
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/dist/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/chart/constants.js +1 -1
- package/dist/es/chart/selection.js +53 -21
- package/dist/es/common/has-classes.js +2 -2
- package/dist/es/map/layers/marker.js +25 -9
- package/dist/es/map/map.js +2 -16
- package/dist/es/map/utils.js +14 -0
- package/dist/es/services/template-service.js +2 -2
- package/dist/es/stock/stock-chart.js +5 -2
- package/dist/es2015/chart/constants.js +1 -1
- package/dist/es2015/chart/selection.js +53 -21
- package/dist/es2015/common/has-classes.js +2 -2
- package/dist/es2015/map/layers/marker.js +26 -10
- package/dist/es2015/map/map.js +2 -16
- package/dist/es2015/map/utils.js +14 -0
- package/dist/es2015/services/template-service.js +2 -2
- package/dist/es2015/stock/stock-chart.js +5 -2
- package/dist/npm/main.js +97 -47
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +5 -6
- package/NOTICE.txt +0 -654
package/dist/es2015/map/map.js
CHANGED
|
@@ -60,13 +60,13 @@ import {
|
|
|
60
60
|
import {
|
|
61
61
|
removeChildren,
|
|
62
62
|
setDefaultEvents,
|
|
63
|
-
toHyphens,
|
|
64
63
|
proxy,
|
|
65
64
|
now,
|
|
66
65
|
on,
|
|
67
66
|
off,
|
|
68
67
|
getSupportedFeatures,
|
|
69
|
-
convertToHtml
|
|
68
|
+
convertToHtml,
|
|
69
|
+
renderPos
|
|
70
70
|
} from './utils';
|
|
71
71
|
|
|
72
72
|
import {
|
|
@@ -100,20 +100,6 @@ const layersMap = {
|
|
|
100
100
|
[MARKER]: MarkerLayer
|
|
101
101
|
};
|
|
102
102
|
|
|
103
|
-
function renderPos(pos) {
|
|
104
|
-
let result = [];
|
|
105
|
-
|
|
106
|
-
if (pos) {
|
|
107
|
-
let parts = toHyphens(pos).split("-");
|
|
108
|
-
|
|
109
|
-
for (let i = 0; i < parts.length; i++) {
|
|
110
|
-
result.push("k-pos-" + parts[i]);
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
return result.join(" ");
|
|
115
|
-
}
|
|
116
|
-
|
|
117
103
|
class Map extends Observable {
|
|
118
104
|
constructor(element, options = {}, themeOptions = {}, context = {}) {
|
|
119
105
|
super();
|
package/dist/es2015/map/utils.js
CHANGED
|
@@ -445,4 +445,18 @@ export const now = () => {
|
|
|
445
445
|
|
|
446
446
|
export const noop = () => {};
|
|
447
447
|
|
|
448
|
+
export const renderPos = (pos) => {
|
|
449
|
+
let result = [];
|
|
450
|
+
|
|
451
|
+
if (pos) {
|
|
452
|
+
let parts = toHyphens(pos).split("-");
|
|
453
|
+
|
|
454
|
+
for (let i = 0; i < parts.length; i++) {
|
|
455
|
+
result.push("k-pos-" + parts[i]);
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
return result.join(" ");
|
|
460
|
+
};
|
|
461
|
+
|
|
448
462
|
/* eslint-enable arrow-body-style */
|
|
@@ -180,7 +180,10 @@ setDefaultOptions(StockChart, {
|
|
|
180
180
|
visible: false
|
|
181
181
|
},
|
|
182
182
|
tooltip: {
|
|
183
|
-
visible:
|
|
183
|
+
visible: false
|
|
184
|
+
},
|
|
185
|
+
highlight: {
|
|
186
|
+
visible: false
|
|
184
187
|
},
|
|
185
188
|
line: {
|
|
186
189
|
width: 2
|
|
@@ -197,4 +200,4 @@ setDefaultOptions(StockChart, {
|
|
|
197
200
|
}
|
|
198
201
|
});
|
|
199
202
|
|
|
200
|
-
export default StockChart;
|
|
203
|
+
export default StockChart;
|