logarithmic: Boolean

Setting logarithmic property to true changes axis scale to logarithmic scale. Default Logarithm Base is 10 – which you can customize using logarithmBase property.


Default: false
Options: true, false

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisY:{
   .
   .
   logarithmic:  true
   .
   .
 },
 .
 . 
});
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