I'm attempting to use kendo-charts but when applying a strict content security policy there are many CSP violations regarding style-src.
This appears to be related to the file render-svg.js, in particular the attempt to set innerHTML:
var renderSVG = function(container, svg) { container.innerHTML = svg; };
Is there any way to avoid this? We cannot set 'unsafe-inline' for the entire application.
Thanks.