I am using the following flexscript to automatically create charts, which can be run.
But when I run this code in the case of nogui, it is not feasible. I guess it's because 'function_s (dashview1,' createGraphWindow ', chartview1,1);' cannot run in nogui mode. Are there any alternative flexscripts available?
My requirement is to obtain Output Per Hour or Statedata without manual operation during nogui. Is there any other method?
Object dashview1=views().find("active>Documents/Dashboard/1+/~"); Object chartview1=views().find("viewslibrary/Dashboard/Output/ThroughputPerHourBar"); treenode chart1=function_s(dashview1,"createGraphWindow",chartview1,1);