EJSC.Chart.x_axis_minor_ticks

See Also: Using Colors

 

Definition

 

object x_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 X axis.  The color, opacity and thickness (width 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 height of the ticks (in pixels).

 

Example

 

 

>> Display red minor tick marks

 

var chart =  new EJSC.Chart(

              "chart",

              {x_axis_minor_ticks: { show: true, color: "#FF0000" }}

       );