Hi @elartiste @quardt , I am experiencing same issue with this plugin inside bootstrap modal however I am able to fix it using window resize event when modal is shown. Just add this script to your footer.
<script>
jQuery('#modal_id').on('shown.bs.modal', function (e) {
window.dispatchEvent(new Event('resize'));
});
</script>