I am attempting to emphasize a specific value on the X-Axis if it meets a specific condition.
For example, in my codepen I want to only change the font size of the \'blu
Looks like it's not possible according to their docs. You can only do something like uppercase needed label with callback function
xAxes: [{ ticks: { fontSize: 16, callback: v => v === 'Blue' ? v.toUpperCase() : v } }]