DeleteLocalDataTable
public void DeleteLocalDataTable(string chartKey);
Parameter
value | description |
---|---|
chartKey | The chart name, chart name specified by GetTableContentAndLocalSave or the chart ID may have different parameter values depending on which Key type they were saved through. |
Description
Deletes the chart file saved locally.
The method is returned as 'void,' only synchronous types are supported.
Example
Synchronous
Backnd.DataTable.DeleteLocalDataTable("chartKey");
Return cases
Error cases
When the chartKey is given as null or an empty string
The 'chartKey must not be null or empty' exception is thrown.
When you want to delete a non-existent chartKey
The 'chartKey is not exist' exception is thrown.