SetStyle ( int curve );    
Description
Controls a style of a curve.
Input parameters
| Parameter | Default value | Description | 
|---|---|---|
| curve | Curve.SHORT_DASH | Defines style of the line. Any of the Curve constants can be used for this parameter. | 
Example
plot Data = low;
Data.SetStyle(Curve.SHORT_DASH);
This example script draws the Low price plot using a short-dashed curve.