setBarStyle() |
Top Previous Next |
setBarStyle( style [, series] )
This function sets the line style for a series value that is being returned to the chart for plotting.
Parameters
Pen Styles
Usage
function main() { var myVar;
... ...
if ( myVar > 0 ) { setBarStyle( PS_SOLID, 0 ); } else { setBarStyle( PS_DOT, 0 ); }
return( myVar );
}
|