calculataur
calculataur

Reputation: 171

Chart.js is it possible to style the labels?

I'm using the chart.js to display some long line charts with the following labels:

labels : ["2014","sem I","sem II","sem III","sem IV","2015","sem I","sem II","sem III","sem IV","2016","sem I","sem II","sem III","sem IV",]

All I want to know is if its possible to make only the years in bold for a better readability?

Upvotes: 7

Views: 6947

Answers (1)

Dagriel
Dagriel

Reputation: 574

From the documentation:

// String - Scale label font weight style
scaleFontStyle: "normal",

Upvotes: 1

Related Questions