**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
我有这样的数据
const
timeStamp =
[ '2022-12-01', '2022-12-01'
, '2022-12-02', '2022-12-02'
, '2022-12-03', '2022-12-03', '2022-12-03'
]
, stroke = [ '1', '0', '0', '0', '1', '0', '0' ]
, tbi = [ '0', '1', '1', '1', '0', '0', '1' ]
, sci = [ '0', '0', '0', '0', '0', '1', '0' ]
我想创建如下所示的新jsdata以创建图表Js
const jsDataFinal =
[ { timeStamp : '2022-12-01'
, dxGroup : { "stroke ": "1", "tbi ": "1", "sci ": "0" }
}
, { timeStamp : '2022-12-02'
, dxGroup : { "stroke ": "0", "tbi ": "2", "sci ": "0" }
}
, { timeStamp : '2022-12-03'
, dxGroup : { "stroke ": "1", "tbi ": "1", "sci ": "1" }
}
]
我尝试了很多次,我想从我的谷歌表创建图表js
2条答案
按热度按时间y4ekin9u1#
在这种情况下,下面的示例脚本如何?
示例脚本:
测试:
运行此脚本时,将获得以下结果。
参考:
oyxsuwqo2#
你可以试试这个