Sets the border thickness of Inputfields in pixels.
In order to display border around Inputfields, set borderThickness to a number greater than zero. Setting borderThickness to zero removes the border.
Default: 2var stockChart = new CanvasJS.StockChart("container",
{
.
.
rangeSelector: {
inputFields: {
style: {
borderThickness: 3,
.
.
}
}
},
.
.
});
stockChart.render();