Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I was able to get kendo grids and charts working inside a custom visual by following this approach
https://github.com/whileoneloop/kendo-ui-power-bi-visual
I then upgraded Kendo to 2019.r1. This still works with version 1.7.0 of custom visuals api.
However when upgrading using pbiviz update 2.3.0 (or 2.5.0) Kendo stops loading. Has anyone gotten kendo working with kendo.all.min.js in these versions of API?
First issue found is solved by removing the hack (required in older version) from window.js which adds devicePixelRatio and innerWidth like so
Object.defineProperties(window, {
'devicePixelRatio': {
get: function () {
return window.window.devicePixelRatio;
}
},
'innerWidth': {
get: function () {
return window.window.innerWidth;
}
}
});
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |