tickLength: Number

Sets the length of Tick Marks that are drawn on the Axis.


Default: 5
Example: 10, 14..

Notes
  • Values should always be positive.


var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisX:{
   tickLength: 5,
 },
 .
 .
});
chart.render();


Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question