EJSC.Axis.grid
See Also: Using Colors
Definition
object grid = { thickness: 1, color: "rgb(230,230,230)", opacity: 100, show: true }
Description
Defines the appearance and visibility of the grid drawn in the background.
Example
>> Do not draw the background grid for the top and right axes.
var chart = new EJSC.Chart( "chart", { axis_top: { grid: { show: false } }, axis_right: { grid: { show: false } } } ); |