Skip to content
Advertisement

charts.js displays only first x and y value from a json api response

I am trying to render a chart with charts.js with a json api but the rendered chart displays only the first x and y values from the json

enter image description here

the json is fetched using xmlhttp

JavaScript

json api link https://syed1ahmed.github.io/stage-gear/api.json

Advertisement

Answer

It seems that Chart.js does not recognize the thousands separators (,) in your values. You can get around your problem by simply remove them using replaceAll() as follows:

JavaScript

Please take a look at your amended code (no HTTP call) and see how it works.

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement