EJSC.Chart.y_axis_minor_ticks
See Also: Using Colors
|
Definition
object y_axis_minor_ticks = { show: false, color: "rgb(0,0,0)", opacity: 20 thickness: 1, count: 7, size: 4 }
Description
Defines the properties of the minor tick marks to be drawn on the Y axis. The color, opacity and thickness (height of ticks in pixels) properties define the style of the tick marks. The count property defines the number of tick marks to be drawn between each major tick mark. The size property defines the width of the ticks (in pixels).
Example
>> Display red minor tick marks
var chart = new EJSC.Chart( "chart", {y_axis_minor_ticks: { show: true, color: "#FF0000" }} ); |