@progress/kendo-charts 1.31.0-dev.202308280454 → 1.31.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/dist/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/chart/highlight.js +1 -1
- package/dist/es/core/chart-element.js +1 -1
- package/dist/es2015/chart/highlight.js +1 -1
- package/dist/es2015/core/chart-element.js +1 -1
- package/dist/npm/main.js +2 -2
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
|
@@ -225,7 +225,7 @@ var ChartElement = (function (Class) {
|
|
|
225
225
|
|
|
226
226
|
ChartElement.prototype.hasHighlight = function hasHighlight () {
|
|
227
227
|
var options = (this.options || {}).highlight;
|
|
228
|
-
return !(!this.createHighlight || (options && options.visible === false));
|
|
228
|
+
return !(!this.createHighlight || (options && options.visible === false) || this.visible === false);
|
|
229
229
|
};
|
|
230
230
|
|
|
231
231
|
ChartElement.prototype.toggleHighlight = function toggleHighlight (show, opacity) {
|
|
@@ -218,7 +218,7 @@ class ChartElement extends Class {
|
|
|
218
218
|
|
|
219
219
|
hasHighlight() {
|
|
220
220
|
const options = (this.options || {}).highlight;
|
|
221
|
-
return !(!this.createHighlight || (options && options.visible === false));
|
|
221
|
+
return !(!this.createHighlight || (options && options.visible === false) || this.visible === false);
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
toggleHighlight(show, opacity) {
|