I am using google charts in my JHipster angular 7 application.
Added below script tags in index.html to load google chart visualization libraries
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', { packages: ['corechart'] });
</script>
Charts are working fine but my application getting slow through the time.
If I move mouse in browser, browsers CPU usage hitting high(100%), this was causing browser hanging, slow respose and etc.,.
If I comment charts div there is no such kind of issue.
Is there any other solution for this like loading scripts via webpack?