@progress/kendo-charts 1.32.1 → 1.33.0-dev.202311081130
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/bar-chart/bar.js +40 -16
- package/dist/es/chart/bubble-chart/bubble.js +10 -0
- package/dist/es/chart/bullet-chart/bullet.js +32 -11
- package/dist/es/chart/candlestick-chart/candlestick.js +37 -1
- package/dist/es/chart/categorical-chart.js +1 -1
- package/dist/es/chart/chart.js +307 -26
- package/dist/es/chart/constants.js +12 -1
- package/dist/es/chart/funnel-chart/funnel-chart.js +5 -3
- package/dist/es/chart/funnel-chart/funnel-segment.js +62 -3
- package/dist/es/chart/heatmap-chart/heatmap-chart.js +2 -1
- package/dist/es/chart/heatmap-chart/heatmap-point.js +68 -29
- package/dist/es/chart/legend/legend-item.js +32 -2
- package/dist/es/chart/legend/legend.js +6 -1
- package/dist/es/chart/line-chart/line-point.js +109 -26
- package/dist/es/chart/mixins/accessibility-attributes-mixin.js +36 -0
- package/dist/es/chart/pie-chart/pie-chart.js +1 -1
- package/dist/es/chart/pie-chart/pie-segment.js +50 -14
- package/dist/es/chart/plotarea/categorical-plotarea.js +53 -2
- package/dist/es/chart/plotarea/funnel-plotarea.js +8 -0
- package/dist/es/chart/plotarea/heatmap-plotarea.js +66 -1
- package/dist/es/chart/plotarea/plotarea-base.js +71 -1
- package/dist/es/chart/plotarea/radar-plotarea.js +8 -0
- package/dist/es/chart/radar-bar-chart/radar-segment.js +4 -0
- package/dist/es/chart/range-area-chart/range-area-point.js +26 -1
- package/dist/es/chart/range-bar-chart/range-bar.js +3 -24
- package/dist/es/chart/scatter-charts/scatter-chart.js +1 -1
- package/dist/es/common/constants.js +6 -0
- package/dist/es/common/cycleDown.js +5 -0
- package/dist/es/common/cycleIndex.js +13 -0
- package/dist/es/common/cycleUp.js +3 -0
- package/dist/es/common.js +3 -0
- package/dist/es/core/chart-element.js +31 -3
- package/dist/es/core/shape-builder.js +1 -1
- package/dist/es/core/shape-element.js +3 -0
- package/dist/es/core/utils/add-accessibility-attributes-to-visual.js +8 -0
- package/dist/es/core/utils/guid.js +17 -0
- package/dist/es/map/layers/shape.js +0 -2
- package/dist/es/map/navigator.js +0 -1
- package/dist/es/map/scroller/user-events.js +0 -2
- package/dist/es/map/utils.js +0 -18
- package/dist/es/map/zoom.js +0 -1
- package/dist/es2015/chart/bar-chart/bar.js +40 -16
- package/dist/es2015/chart/bubble-chart/bubble.js +10 -0
- package/dist/es2015/chart/bullet-chart/bullet.js +32 -11
- package/dist/es2015/chart/candlestick-chart/candlestick.js +37 -1
- package/dist/es2015/chart/categorical-chart.js +1 -1
- package/dist/es2015/chart/chart.js +295 -26
- package/dist/es2015/chart/constants.js +12 -1
- package/dist/es2015/chart/funnel-chart/funnel-chart.js +5 -3
- package/dist/es2015/chart/funnel-chart/funnel-segment.js +62 -3
- package/dist/es2015/chart/heatmap-chart/heatmap-chart.js +2 -1
- package/dist/es2015/chart/heatmap-chart/heatmap-point.js +68 -29
- package/dist/es2015/chart/legend/legend-item.js +32 -2
- package/dist/es2015/chart/legend/legend.js +6 -1
- package/dist/es2015/chart/line-chart/line-point.js +110 -26
- package/dist/es2015/chart/mixins/accessibility-attributes-mixin.js +36 -0
- package/dist/es2015/chart/pie-chart/pie-chart.js +1 -1
- package/dist/es2015/chart/pie-chart/pie-segment.js +50 -14
- package/dist/es2015/chart/plotarea/categorical-plotarea.js +49 -2
- package/dist/es2015/chart/plotarea/funnel-plotarea.js +8 -0
- package/dist/es2015/chart/plotarea/heatmap-plotarea.js +60 -1
- package/dist/es2015/chart/plotarea/plotarea-base.js +67 -1
- package/dist/es2015/chart/plotarea/radar-plotarea.js +8 -0
- package/dist/es2015/chart/radar-bar-chart/radar-segment.js +4 -0
- package/dist/es2015/chart/range-area-chart/range-area-point.js +26 -1
- package/dist/es2015/chart/range-bar-chart/range-bar.js +3 -24
- package/dist/es2015/chart/scatter-charts/scatter-chart.js +1 -1
- package/dist/es2015/common/constants.js +6 -0
- package/dist/es2015/common/cycleDown.js +5 -0
- package/dist/es2015/common/cycleIndex.js +13 -0
- package/dist/es2015/common/cycleUp.js +3 -0
- package/dist/es2015/common.js +3 -0
- package/dist/es2015/core/chart-element.js +31 -3
- package/dist/es2015/core/shape-builder.js +1 -1
- package/dist/es2015/core/shape-element.js +3 -0
- package/dist/es2015/core/utils/add-accessibility-attributes-to-visual.js +8 -0
- package/dist/es2015/core/utils/guid.js +17 -0
- package/dist/es2015/map/layers/shape.js +0 -2
- package/dist/es2015/map/navigator.js +0 -2
- package/dist/es2015/map/scroller/user-events.js +0 -2
- package/dist/es2015/map/utils.js +0 -18
- package/dist/es2015/map/zoom.js +0 -2
- package/dist/npm/main.js +1098 -156
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
- package/dist/es/chart/area-chart/area-segment-mixin.js +0 -91
- package/dist/es2015/chart/area-chart/area-segment-mixin.js +0 -91
|
@@ -305,7 +305,6 @@ class GeoJsonLoader extends Class {
|
|
|
305
305
|
}
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
-
/* eslint-disable indent */
|
|
309
308
|
_loadGeometryTo(container, geometry, dataItem) {
|
|
310
309
|
let coords = geometry.coordinates;
|
|
311
310
|
let i;
|
|
@@ -342,7 +341,6 @@ class GeoJsonLoader extends Class {
|
|
|
342
341
|
break;
|
|
343
342
|
}
|
|
344
343
|
}
|
|
345
|
-
/* eslint-disable indent */
|
|
346
344
|
|
|
347
345
|
_setLineFill(path) {
|
|
348
346
|
let segments = path.segments;
|
|
@@ -134,7 +134,6 @@ export class Navigator extends Observable {
|
|
|
134
134
|
e.preventDefault();
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
-
/* eslint-disable indent */
|
|
138
137
|
_keydown(e) {
|
|
139
138
|
switch (e.which) {
|
|
140
139
|
case keys.UP:
|
|
@@ -157,7 +156,6 @@ export class Navigator extends Observable {
|
|
|
157
156
|
break;
|
|
158
157
|
}
|
|
159
158
|
}
|
|
160
|
-
/* eslint-enable indent */
|
|
161
159
|
}
|
|
162
160
|
|
|
163
161
|
setDefaultOptions(Navigator, {
|
|
@@ -493,7 +493,6 @@ export class UserEvents extends Observable {
|
|
|
493
493
|
this.trigger(CANCEL);
|
|
494
494
|
}
|
|
495
495
|
|
|
496
|
-
/* eslint-disable indent */
|
|
497
496
|
notify(event, data) {
|
|
498
497
|
let that = this,
|
|
499
498
|
touches = that.touches;
|
|
@@ -523,7 +522,6 @@ export class UserEvents extends Observable {
|
|
|
523
522
|
type: eventName
|
|
524
523
|
}));
|
|
525
524
|
}
|
|
526
|
-
/* eslint-enable indent */
|
|
527
525
|
|
|
528
526
|
press(x, y, target) {
|
|
529
527
|
this._apiCall('_start', x, y, target);
|
package/dist/es2015/map/utils.js
CHANGED
|
@@ -421,24 +421,6 @@ export const wheelDeltaY = (jQueryEvent) => {
|
|
|
421
421
|
return delta;
|
|
422
422
|
};
|
|
423
423
|
|
|
424
|
-
export const guid = () => {
|
|
425
|
-
let id = "";
|
|
426
|
-
let i;
|
|
427
|
-
let random;
|
|
428
|
-
|
|
429
|
-
for (i = 0; i < 32; i++) {
|
|
430
|
-
random = Math.random() * 16 | 0;
|
|
431
|
-
|
|
432
|
-
if (i === 8 || i === 12 || i === 16 || i === 20) {
|
|
433
|
-
id += "-";
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
id += (i === 12 ? 4 : (i === 16 ? (random & 3 | 8) : random)).toString(16); // eslint-disable-line no-nested-ternary
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
return id;
|
|
440
|
-
};
|
|
441
|
-
|
|
442
424
|
export const now = () => {
|
|
443
425
|
return Number(new Date());
|
|
444
426
|
};
|
package/dist/es2015/map/zoom.js
CHANGED
|
@@ -105,7 +105,6 @@ export class ZoomControl extends Observable {
|
|
|
105
105
|
e.preventDefault();
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
/* eslint-disable indent */
|
|
109
108
|
_keydown(e) {
|
|
110
109
|
switch (e.which) {
|
|
111
110
|
case keys.NUMPAD_PLUS:
|
|
@@ -122,7 +121,6 @@ export class ZoomControl extends Observable {
|
|
|
122
121
|
break;
|
|
123
122
|
}
|
|
124
123
|
}
|
|
125
|
-
/* eslint-enable indent */
|
|
126
124
|
}
|
|
127
125
|
|
|
128
126
|
setDefaultOptions(ZoomControl, {
|