add
Add a new chart to a Chartpack object
Syntax
add(ch, inputString, ___)
Short-cut syntax
ch + inputString
ch + [inputString, inputString, inputString]
Input arguments
inputString [ string ]
String, or an array of strings, specifying the expression to be plotted in a new chart, optionally with a caption preceding the expression and separated by a colon.
Output arguments
No output arguments are needed because the Chartpack object ch
is a handle object, and updating handle objects does not require capturing
them as output arguments.
Options
ApplyTransform=true [ true | false ]
Apply the function specified in the option
Transformto the data in this chart;ApplyTransform=falsecan be also achieved by using a hat sign^at the beginning of the expression in theinputString.
Expansion=@parent [ cell | empty | @parent ]
Replace a substring in the expression with mutliple strings, creating multiple series to be plotted in the same chart; overrides the property
Expansiondefined at the level of the Chartpack object.
Transform=@parent [ function | empty | @parent ]
Function that will be applied to this data inputString before it gets plotted; overrides the property
Transformdefined at the level of the Chartpack object.