@progress/kendo-charts 1.30.0-dev.202307061326 → 1.30.0-dev.202307281304
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/line-chart/line-point.js +1 -1
- package/dist/es/map/zoom.js +2 -2
- package/dist/es2015/chart/line-chart/line-point.js +1 -1
- package/dist/es2015/map/zoom.js +2 -2
- package/dist/npm/main.js +4 -4
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +15 -15
|
@@ -93,7 +93,7 @@ var LinePoint = (function (ChartElement) {
|
|
|
93
93
|
rotation: options.rotation,
|
|
94
94
|
background: options.background,
|
|
95
95
|
border: this.markerBorder(),
|
|
96
|
-
opacity:
|
|
96
|
+
opacity: options.opacity,
|
|
97
97
|
zIndex: valueOrDefault(options.zIndex, this.series.zIndex),
|
|
98
98
|
animation: options.animation,
|
|
99
99
|
visual: options.visual
|
package/dist/es/map/zoom.js
CHANGED
|
@@ -41,8 +41,8 @@ export var ZoomControl = (function (Observable) {
|
|
|
41
41
|
this.element = element;
|
|
42
42
|
this._initOptions(options);
|
|
43
43
|
|
|
44
|
-
var zoomInButton = createButton('in', '
|
|
45
|
-
var zoomOutButton = createButton('out', '
|
|
44
|
+
var zoomInButton = createButton('in', 'plus', iconOptions);
|
|
45
|
+
var zoomOutButton = createButton('out', 'minus', iconOptions);
|
|
46
46
|
|
|
47
47
|
this.element.appendChild(zoomInButton);
|
|
48
48
|
this.element.appendChild(zoomOutButton);
|
|
@@ -87,7 +87,7 @@ class LinePoint extends ChartElement {
|
|
|
87
87
|
rotation: options.rotation,
|
|
88
88
|
background: options.background,
|
|
89
89
|
border: this.markerBorder(),
|
|
90
|
-
opacity:
|
|
90
|
+
opacity: options.opacity,
|
|
91
91
|
zIndex: valueOrDefault(options.zIndex, this.series.zIndex),
|
|
92
92
|
animation: options.animation,
|
|
93
93
|
visual: options.visual
|
package/dist/es2015/map/zoom.js
CHANGED
|
@@ -41,8 +41,8 @@ export class ZoomControl extends Observable {
|
|
|
41
41
|
this.element = element;
|
|
42
42
|
this._initOptions(options);
|
|
43
43
|
|
|
44
|
-
const zoomInButton = createButton('in', '
|
|
45
|
-
const zoomOutButton = createButton('out', '
|
|
44
|
+
const zoomInButton = createButton('in', 'plus', iconOptions);
|
|
45
|
+
const zoomOutButton = createButton('out', 'minus', iconOptions);
|
|
46
46
|
|
|
47
47
|
this.element.appendChild(zoomInButton);
|
|
48
48
|
this.element.appendChild(zoomOutButton);
|