You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For whatever reason when i set my labels to return a formatted currency value like the following i am not able to download PNG and when downloading the SVG the values of the both X and Y axis are not shown.
yaxis: {
labels: {
formatter: function (value) {
let formatter = new Intl.NumberFormat('pt-BR', {
style: 'currency',
currency: 'BRL',
});
return formatter.format(value)
}
},
},
However if i format my values as such everything works:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
For whatever reason when i set my labels to return a formatted currency value like the following i am not able to download PNG and when downloading the SVG the values of the both X and Y axis are not shown.
However if i format my values as such everything works:
Does anyone knows why this happens?
The text was updated successfully, but these errors were encountered: