Contents
Strategic Partner Links
Sepasoft - MES Modules
Cirrus Link - MQTT Modules
Resources
Knowledge Base Articles
Inductive University
Forum
IA Support
SDK Documentation
SDK Examples
Starts a new instance of a chart. The chart must be set to "Callable" execution mode.
Permission Type: SFC Management
Client access to this scripting function is blocked to users that do not meet the role/zone requirements for the above permission type. This function is unaffected when run in the Gateway scope.
system.sfc.startChart(path, arguments)
Path - The path to the chart, for example "ChartFolder/ChartName"
Arguments - A dictionary of arguments. Each key-value pair in the dictionary becomes a variable in the chart scope and will override any default.
String - The unique ID of this chart.
All
# The following will start an SFC with a dictionary of values to use inside the chart args= {"var1":10, "Var2":15,"Var3":1} path = "ChartFolder/ChartName" sfcID = system.sfc.startChart(path, args)