I am trying to export HTML dashboard on model stop.
When I export it as csv using the code below, it works fine
string curDir = modeldir();
treenode obj = model().find("Tools/Statistics/State Bar"); function_s(obj,"createCSV",curDir+"Dummyresult.csv");
I am unable to find the string that needs to be used in function_s that does the export in HTML format.
Intuitively, I tried "createHTML" , but that does not seem to work.