provide a way to delete all associated loose dataset when delete Graph


Version: 2022

Type: Features

Category: Programming

Subcategory: General

Jira: ORG-24047


Example Code:

void DeleteGraphWithLooseDataset()
{
	GraphPage gp = Project.Pages();
	if (gp)
	{
		FORCE_DELETE_LOOSE_DATASET_WITH_GRAPH;
		gp.Destroy();
	}
}