handleBorderThickness: Number

Sets the border thickness of handle in pixels.

To display border around handle, set handleBorderThickness to a number greater than zero. Setting handleBorderThickness to zero removes the border.


Default: 1
Examples: 2, 3, …

var stockChart = new CanvasJS.StockChart("container",
{
 .
 .
 navigator: {
   .
   .
   slider: {
     handleBorderThickness: 2
   },
   .
   .
 },
 .
 . 
});
stockChart.render();



Try it Yourself by Editing the Code below.




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