handleWidth: Number

Sets the width of handle in pixels.


Default: Automatically Calculated based on the navigator width
Examples: 10, 20, …

Notes
  • We suggest not to set width/height property unless it is really required. When you don’t set the width/height of the handle, CanvasJS automatically takes the width/height of handle in proportion to the size of navigator.
var stockChart = new CanvasJS.StockChart("container",
{
 .
 .
 navigator: {
   .
   .
   slider: {
     handleWidth: 10
   },
   .
   .
 },
 .
 . 
});
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