Sets the Index Label’s Font Weight. It can be set to one of the below options.
Default: “normal”var chart = new CanvasJS.Chart("container",
{
.
.
data: [{
dataPoints: [
{ x: 10, y: 10, indexLabel: "label1", indexLabelFontWeight: "bold" },
],
},
]
.
.
});
chart.render();