ChartJS charts not generating within tabs
问题 I'm trying to use ChartsJS within a tabbing system. The first chart in the first tab is rendered, but subsequent charts are not. I believe this is because the tabs have display:none , so when the charts are first generated they are created in a div with zero dimensions. This fixes the issue, but breaks the tabs: .vertical-nav>div.tab-content { display: block !important; } With that in mind I've tried all kinds of ways to regenerate the charts after the tab is open, or force display:block just