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
the json is fetched using xmlhttp
JavaScript
x
38
38
1
var url = "https://syed1ahmed.github.io/stage-gear/api.json";
2
xmlhttp.open("GET", url, true);
3
xmlhttp.send();
4
xmlhttp.onreadystatechange = function () {
5
if (this.readyState == 4 && this.status == 200) {
6
var data = JSON.parse(this.responseText);
7
8
date = data.data.map(function (elem) {
9
return elem.x;
10
})
11
12
volume = data.data.map(function (elem) {
13
return elem.y;
14
})
15
16
const ctx = document.getElementById('myChart').getContext('2d');
17
const myChart = new Chart(ctx, {
18
type: 'bar',
19
data: {
20
labels: date,
21
datasets: [{
22
label: 'daily volume in USD',
23
data: volume,
24
backgroundColor: 'rgba(255, 99, 132, 1)'
25
}]
26
},
27
options: {
28
scales: {
29
y: {
30
31
}
32
}
33
}
34
});
35
36
}
37
}
38
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
1
4
1
volume = data.data.map(function (elem) {
2
return elem.y.replaceAll(',', '');
3
});
4
Please take a look at your amended code (no HTTP
call) and see how it works.
JavaScript
1
240
240
1
var data = {
2
"data": [{
3
"x": "Jun 01, 2018",
4
"y": "52.78124425595927"
5
},
6
{
7
"x": "Jul 01, 2018",
8
"y": "5,418.613108428228"
9
},
10
{
11
"x": "Aug 01, 2018",
12
"y": "203,981.26814003725"
13
},
14
{
15
"x": "Sep 01, 2018",
16
"y": "41,855.35334764546"
17
},
18
{
19
"x": "Oct 01, 2018",
20
"y": "47,121.06598405195"
21
},
22
{
23
"x": "Nov 01, 2018",
24
"y": "68,219.78481479896"
25
},
26
{
27
"x": "Dec 01, 2018",
28
"y": "106,208.66125578032"
29
},
30
{
31
"x": "Jan 01, 2019",
32
"y": "261,214.899791384"
33
},
34
{
35
"x": "Feb 01, 2019",
36
"y": "331,730.6884339796"
37
},
38
{
39
"x": "Mar 01, 2019",
40
"y": "649,319.4385028543"
41
},
42
{
43
"x": "Apr 01, 2019",
44
"y": "679,321.6099113098"
45
},
46
{
47
"x": "May 01, 2019",
48
"y": "698,144.0531540666"
49
},
50
{
51
"x": "Jun 01, 2019",
52
"y": "484,173.3966476037"
53
},
54
{
55
"x": "Jul 01, 2019",
56
"y": "531,748.0974990415"
57
},
58
{
59
"x": "Aug 01, 2019",
60
"y": "494,265.2626726319"
61
},
62
{
63
"x": "Sep 01, 2019",
64
"y": "715,725.4201179789"
65
},
66
{
67
"x": "Oct 01, 2019",
68
"y": "1,837,100.6108408063"
69
},
70
{
71
"x": "Nov 01, 2019",
72
"y": "850,018.0923909895"
73
},
74
{
75
"x": "Dec 01, 2019",
76
"y": "854,509.2031143928"
77
},
78
{
79
"x": "Jan 01, 2020",
80
"y": "1,007,118.1584876713"
81
},
82
{
83
"x": "Feb 01, 2020",
84
"y": "1,530,670.3881858303"
85
},
86
{
87
"x": "Mar 01, 2020",
88
"y": "1,100,377.6202637332"
89
},
90
{
91
"x": "Apr 01, 2020",
92
"y": "1,048,740.4987093885"
93
},
94
{
95
"x": "May 01, 2020",
96
"y": "1,066,146.957757765"
97
},
98
{
99
"x": "Jun 01, 2020",
100
"y": "917,965.8857672011"
101
},
102
{
103
"x": "Jul 01, 2020",
104
"y": "1,076,082.076370403"
105
},
106
{
107
"x": "Aug 01, 2020",
108
"y": "937,071.1236946463"
109
},
110
{
111
"x": "Sep 01, 2020",
112
"y": "2,747,539.4456087383"
113
},
114
{
115
"x": "Oct 01, 2020",
116
"y": "4,773,432.3952869885"
117
},
118
{
119
"x": "Nov 01, 2020",
120
"y": "4,483,383.749190311"
121
},
122
{
123
"x": "Dec 01, 2020",
124
"y": "3,568,749.2548671504"
125
},
126
{
127
"x": "Jan 01, 2021",
128
"y": "8,072,866.650029003"
129
},
130
{
131
"x": "Feb 01, 2021",
132
"y": "96,731,289.37183556"
133
},
134
{
135
"x": "Mar 01, 2021",
136
"y": "148,017,660.0724626"
137
},
138
{
139
"x": "Apr 01, 2021",
140
"y": "95,779,027.33114299"
141
},
142
{
143
"x": "May 01, 2021",
144
"y": "138,917,885.22552317"
145
},
146
{
147
"x": "Jun 01, 2021",
148
"y": "150,308,148.9535175"
149
},
150
{
151
"x": "Jul 01, 2021",
152
"y": "328,964,751.5721974"
153
},
154
{
155
"x": "Aug 01, 2021",
156
"y": "3,421,850,687.562206"
157
},
158
{
159
"x": "Sep 01, 2021",
160
"y": "2,991,073,935.3753285"
161
},
162
{
163
"x": "Oct 01, 2021",
164
"y": "2,548,526,282.894439"
165
},
166
{
167
"x": "Nov 01, 2021",
168
"y": "2,162,564,606.528579"
169
},
170
{
171
"x": "Dec 01, 2021",
172
"y": "2,559,484,013.292382"
173
},
174
{
175
"x": "Jan 01, 2022",
176
"y": "4,857,435,382.1052265"
177
},
178
{
179
"x": "Feb 01, 2022",
180
"y": "3,326,430,045.315286"
181
},
182
{
183
"x": "Mar 01, 2022",
184
"y": "2,483,354,859.0230055"
185
},
186
{
187
"x": "Apr 01, 2022",
188
"y": "3,487,751,260.8629684"
189
},
190
{
191
"x": "May 01, 2022",
192
"y": "2,596,397,753.7464023"
193
},
194
{
195
"x": "Jun 01, 2022",
196
"y": "695,420,425.3349748"
197
},
198
{
199
"x": "Jul 01, 2022",
200
"y": "528,641,117.64340025"
201
},
202
{
203
"x": "Aug 01, 2022",
204
"y": "502,093,181.84102654"
205
},
206
{
207
"x": "Sep 01, 2022",
208
"y": "38,051,752.44172493"
209
}
210
]
211
};
212
213
const date = data.data.map(function(elem) {
214
return elem.x;
215
});
216
217
const volume = data.data.map(function(elem) {
218
return elem.y.replaceAll(',', '');
219
});
220
221
//console.log(date)
222
223
new Chart('myChart', {
224
type: 'bar',
225
data: {
226
labels: date,
227
datasets: [{
228
label: 'daily volume in USD',
229
data: volume,
230
backgroundColor: 'rgba(255, 99, 132, 1)'
231
}]
232
},
233
options: {
234
scales: {
235
y: {
236
beginAtZero: true
237
}
238
}
239
}
240
});
JavaScript
1
2
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.9.1/chart.js"></script>
2
<canvas id="myChart"></canvas>