How To Add Cells At Runtime In TabView?

Hi,
My requirement is to add tabs on the fly in TabView and the content of the tab should be created on tab activate.

E.g., I have to create DataTab and ChartTab, Chart should be created only on the “ChartTab” is active or ready.

Can someone helpme in finding out the right event with the sample (Webix Snippet).

Thanks,
Ranjith G.

https://docs.webix.com/api__link__ui.tabview_addview.html
https://docs.webix.com/api__ui.multiview_onviewchange_event.html https://webix.com/snippet/d234fbd8
you need to implement your own logic in onViewChange event

Thanks for the response.