我在试图弄清楚如何将正确的数据显示到正确的类别时遇到问题。我的数据是来自 json API 的这种格式:
{
"name" : "product1",
"records": "5",
"month" : "Jan",
},
{
"name" : "product1",
"records": "10",
"month" : "Feb",
},
{
"name" : "product1",
"records": "20",
"month" : "March",
},
{
"name" : "product2",
"records": "5",
"month" : "Feb",
}
数据模型的一个例子。
this.state = {
barChart: {
options: {
plotOptions: {
xaxis: {
categories: []
}}}
series: [{name: [], data: []}}
这是我已经花费了几天时间的顶点图表中的 ReactJs 中的状态,我尝试根据字母对其进行排序:数据在图表中显示错误。我正在阅读文档,但不知道该怎么做,或者如何让逻辑正确。类别不能如此重复:[Jan, Feb, March] 并且数据[记录] 在它自己的类别中必须是正确的。