cursor: String

Sets the cursor type of Range Buttons.


Default: “pointer”
Examples: “pointer”, “move”, “crosshair”, …

var stockChart = new CanvasJS.StockChart("container",
{
 .
 .
 rangeSelector: {
   buttonStyle: {
     cursor: "move",
     .
     .
   }
 },
 .
 .
});
stockChart.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