EJSC.Chart.x_zero_plane
See Also
|
Definition
object x_zero_plane = { color: "rgb(0,0,0)", show: false, thickness: 1 }
Description
Defines the properties of the zero plane line to be drawn at X=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 x zero plane
var chart = new EJSC.Chart( "chart", {x_zero_plane: {show: true, color:'rgb(7,89,5)', thickness:2}} ); |