addBand() |
Top Previous Next |
addBand( value, style, thickness, color, tagID )
This function will draw a horizontal line at the value specified.
Parameters
Pen Styles
Usage
//draw a navy-colored dotted band at the 50.0 price level and //assign a tagID of -10 so that we can remove it later addBand( 50.0, PS_DOT, 3, Color.navy, -10 );
|