You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I was trying to get visibleNodeIds from chart object,
but that property was not in type definition file so it was throwing error.
I' m currently using typecast to accessing it like below:
const chart = new OrgChart(container, options);
chart.visibleNodeIds // throws error
const chartObj : any = chart ;
chartObj.visibleNodeIds // works fine