Sets the axisY label border color. Values of labelBorderColor can be “HTML Color Name”, “hex code”, or “rgba values”.
Default: “transparent”var chart = new CanvasJS.Chart("container", {
.
.
axisY: {
labelBorderColor: "#FF9A31",
labelBorderThickness: 1
},
.
.
});
chart.render();