I currently have a canvas within a tab that is unable to display after the page has fully loaded:
<canvas class="chart chart-radar m-t-xs" data="level" labels="label"></canvas>
The chart's data is retrieved through a $http
request (lazy loaded).
If I click on the tab right when the page loads, the chart displays perfectly and everyone is happy :)
However, if I stay on the tab while the data loads into the chart and then switch tabs like a normal user would, the chart doesn't appear (it seems like it's not rendering).
This isn't the first time I've encountered this issue, and I was hoping that someone else out there has experienced the same thing and knows of a workaround?