EJSC.Chart.x_zero_plane
See Also: Using Colors
|
Definition
object x_zero_plane = { color: "rgb(0,0,0)", show: false, thickness: 1, coordinate: 0 }
Description
Defines the properties of the zero plane line to be drawn at X=0 (or whatever the coordinate property is set to). It is used to specify if the line should be shown as well as its color and thickness. The coordinate property allows the base of EJSC.BarSeries with a horizontal orientation to be changed.
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}} ); |