@progress/kendo-charts 2.3.0-dev.202403211054 → 2.3.0-dev.202403271344
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/legend/legend-item.js +1 -0
- package/dist/es/core/text.js +5 -1
- package/dist/es/sankey/label.js +2 -0
- package/dist/es/sankey/sankey.js +4 -0
- package/dist/es2015/chart/legend/legend-item.js +1 -0
- package/dist/es2015/core/text.js +4 -2
- package/dist/es2015/sankey/label.js +2 -0
- package/dist/es2015/sankey/sankey.js +4 -0
- package/dist/npm/main.js +13 -2
- package/dist/npm/sankey.d.ts +11 -0
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +3 -3
|
@@ -70,6 +70,7 @@ var LegendItem = (function (BoxElement) {
|
|
|
70
70
|
var markers = options.markers; if ( markers === void 0 ) markers = {};
|
|
71
71
|
var markerColor = options.markerColor;
|
|
72
72
|
var border = markers.border; if ( border === void 0 ) border = {};
|
|
73
|
+
markers.zIndex = undefined;
|
|
73
74
|
|
|
74
75
|
return deepExtend({}, markers, {
|
|
75
76
|
border: { color: border.color || markerColor },
|
package/dist/es/core/text.js
CHANGED
|
@@ -38,11 +38,15 @@ var Text = (function (ChartElement) {
|
|
|
38
38
|
var color = ref.color;
|
|
39
39
|
var opacity = ref.opacity;
|
|
40
40
|
var cursor = ref.cursor;
|
|
41
|
+
var stroke = ref.stroke;
|
|
42
|
+
var paintOrder = ref.paintOrder;
|
|
41
43
|
|
|
42
44
|
this.visual = new DrawingText(this.content, this.box.toRect().topLeft(), {
|
|
43
45
|
font: font,
|
|
44
46
|
fill: { color: color, opacity: opacity },
|
|
45
|
-
cursor: cursor
|
|
47
|
+
cursor: cursor,
|
|
48
|
+
stroke: stroke,
|
|
49
|
+
paintOrder: paintOrder
|
|
46
50
|
});
|
|
47
51
|
};
|
|
48
52
|
|
package/dist/es/sankey/label.js
CHANGED
package/dist/es/sankey/sankey.js
CHANGED
|
@@ -64,6 +64,7 @@ class LegendItem extends BoxElement {
|
|
|
64
64
|
const options = this.options;
|
|
65
65
|
const { markers = {}, markerColor } = options;
|
|
66
66
|
const { border = {} } = markers;
|
|
67
|
+
markers.zIndex = undefined;
|
|
67
68
|
|
|
68
69
|
return deepExtend({}, markers, {
|
|
69
70
|
border: { color: border.color || markerColor },
|
package/dist/es2015/core/text.js
CHANGED
|
@@ -30,12 +30,14 @@ class Text extends ChartElement {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
createVisual() {
|
|
33
|
-
const { font, color, opacity, cursor } = this.options;
|
|
33
|
+
const { font, color, opacity, cursor, stroke, paintOrder } = this.options;
|
|
34
34
|
|
|
35
35
|
this.visual = new DrawingText(this.content, this.box.toRect().topLeft(), {
|
|
36
36
|
font: font,
|
|
37
37
|
fill: { color: color, opacity: opacity },
|
|
38
|
-
cursor: cursor
|
|
38
|
+
cursor: cursor,
|
|
39
|
+
stroke: stroke,
|
|
40
|
+
paintOrder: paintOrder
|
|
39
41
|
});
|
|
40
42
|
}
|
|
41
43
|
}
|