Sets the border thickness of Range Buttons in pixels.
To display border, set the borderThickness to a number greater than zero. Setting it to zero will remove the border.
Default: 1var stockChart = new CanvasJS.StockChart("container",
{
.
.
rangeSelector: {
buttonStyle: {
borderThickness: 2,
.
.
}
},
.
.
});
stockChart.render();