SymbolDataSource
public enum SymbolDataSource
The Data source of a data symbol
-
Symbol explicitly created by user and needs feeding from user, like Input of graph.
Declaration
Swift
case User
-
Symbol gets data from a calculation result, so no need sfeeding from user. For example, output of operator symbols inside a graph.
Declaration
Swift
case Calculation
-
Parameter data source. This measn a datay symbol’s binded data is parameter.
Declaration
Swift
case Parameter
-
Symbol has a default value but also can receive data from user, like some parameters of operators.
Declaration
Swift
case Default
-
other cases
Declaration
Swift
case Other