I'm having some trouble getting the radial tree to work with a dynamic data source. I've tried setting the data equal to an object array that gets updated in various cases, I've also tried using a DataManager in the same way binding to an array and I've also tried using the DataManager with a URL and WebApiAdaptor.
I'm using Vue and Typescript. The only way I've been able to get the data to update is to clear the data, reset it and then refresh.
this.$refs.diagram.clear();
this.$refs.diagram.ej2Instances.dataSourceSettings.data = value;
this.$refs.diagram.ej2Instances.refresh();
What is the correct way to have a radial tree with a remote data source that can be refreshed without refreshing the page?