Axis labels display as format strings

Hi,
We have several charts where the x-axis labels are set to {value:%b '%y}, but after they’re embedded, the raw string is displaying.
Here is a chart example: https://app.everviz.com/edit/495810?editor&panel=chart_customize
Here is the chart embedded in CodePen: https://codepen.io/selbouez/pen/oNQvPoq

They were fine up until today, so not sure if Highcharts had an update?

Confirmed and reproduced. I will report to Highcharts (done!)!

The thing that breaks the chart here is the ’ (apostrophe), which since today is preventing Highcharts from seeing this formatting value as something to be formatted. In other words, you might as well just’ve dropped the { and }.

As a result, a solution is to do: {value:%b} ’{value:%y}

.Highcharts Demo - JSFiddle - Code Playground

1 Like

Ah ok. I’ve changed the apostrophe to a tick mark instead and it’s working properly. Thank you, Martin!

1 Like

Yup, that’s also possible! But if you really wanted that apostrophe, you can have it your way. This might be our internal solution for this if are doing something about it before an official Highcharts release.

2 Likes