| 3.3.2.57.7 Options for Error BarsOptions_for_Error_Bars 
 -erdxSyntax: set name -erdx direction	
 Set X Error Bar direction, 0 = both, 1 = plus, 2 = minus
 layer.plot = 2;//activate err plot
set %C -erdx 1; -erdySyntax: set name -erdy direction	
 Set Y Error Bar direction, 0 = both, 1 = plus, 2 = minus
 -erftSyntax: set name -erft mode	
 Error bar composite toggle, 1 = on, 0 = off. Same as check the Fill Area button in mini toolbar of Error Bar
 -erwSyntax: set name -erw width	
 Set error bar line width
 -erwcSyntax: set name -erwc width	
 Set error bar cap width
 -oSyntax: set name -o YDataset	
 Plot the values in the name dataset as Y error bars for the plotted Ydataset.	name must be a plotted dataset.    For example, if column B and column C are displayed as line data plots in the active graph window, the following example displays column C as Y error bars for column B.
 range err = [Book1]Sheet1!col(C);
range line = [Book1]Sheet1!col(B);
set err -o line; -omSyntax: set -om YDataset	
 Plot the values in the name dataset as Y (minus) error bars for the plotted YDataset.	name must be a plotted dataset. For example, if column B and column C are displayed as line data plots in the active graph window, the 
range rc = [Book1]Sheet1!C;
range rb = [Book1]Sheet1!B;
set rc -om rb;command displays column C as Y (minus) error bars for column B. -opSyntax: set name -op YDataset	
 Plot the values in the name dataset as Y (plus) error bars for the plotted YDataset.	name must be a plotted dataset. For example, if column B and column C are displayed as line data plots in the active graph window, the 
range rc = [Book1]Sheet1!C;
range rb = [Book1]Sheet1!B;
set rc -op rb;command displays column C as Y (plus) error bars for column B. -orSyntax: set name -or YDataset	
 Plot the values in the name dataset as Y error bars (relative) for the plotted YDataset.	name must be a plotted dataset.    For example, if column B and column C are displayed as line data plots in the active graph window, the 
range rc = [Book1]Sheet1!C;
range rb = [Book1]Sheet1!B;
set rc -or rb;command displays column C as Y (plus) error bars for column B. -oxSyntax: set name -ox YDataset	
 Plot the values in the name dataset as X error bars for the plotted YDataset.	name must be a plotted dataset. For example, if column B and column C are displayed as line data plots in the active graph window, the 
range rc = [Book1]Sheet1!C;
range rb = [Book1]Sheet1!B;
set rc -ox rb;command displays column C as X error bars for column B. -oxmSyntax: set name -oxm YDataset
 Plot the values in the name dataset as X (minus) error bars for the plotted YDataset.	name must be a plotted dataset.    For example, if column B and column C are displayed as line data plots in the active graph window, the 
range rc = [Book1]Sheet1!C;
range rb = [Book1]Sheet1!B;
set rc -oxm rb;command displays column C as X minus error bars for column B. -oxpSyntax: set name -oxp YDataset	
 Plot the values in the name dataset as X plus (error) bars for the plotted YDataset.	name must be a plotted dataset. For example, if column B and column C are displayed as line data plots in the active graph window, the 
range rc = [Book1]Sheet1!C;
range rb = [Book1]Sheet1!B;
set rc -oxp rb;command displays column C as X plus error bars for column B. |