Vertilize loaded on page-load
Hi all,
I'm using angular-vertilize and all seems to work just fine when I resize the window. The vertilize part doesn't work on page load, correct? I've attached two screenshots to maybe clearify my issue; the incorrect.png one shows the chart on page load, the correct.png one shows the same chart after I manually scaled the browser.
I would like the chart to always be completely in view...

For now I sort of fixed it by using css flexbox, but I can't help but wonder there's a angular way of doing this...
I fixed the issue by adding:
$timeout(function () { angular.element($window).triggerHandler('resize') }, 500);
at the bottom of the vertilizeContainer directive.
@destom01 ---- how to implement this fix...can you share me code of angular vertilize after adding the above fix.