EJSC.Chart.y_zero_plane
See Also
|
Definition
object y_zero_plane = { color: "rgb(0,0,0)", show: false, thickness: 1 }
Description
Defines the properties of the zero plane line to be drawn at Y=0. It is used to specify if the line should be shown as well as its color and thickness.
Example
>> Display a 2 pixel thick dark green line on the y zero plane
var chart = new EJSC.Chart( "chart", {y_zero_plane: {show: true, color:'rgb(7,89,5)', thickness:2}} ); |