问题描述
enter code here
我通过时间序列绘制多条线使用融合图,但它总是绘制单线图。所以如果可能的话,请帮助我。
[在此处输入图片说明][1]
这是我用来创建融合图表的数据
data =
[
[
"01-Feb-11","Grocery",8866
],[
"01-Feb-11","Footwear",984
],[
"02-Feb-11",2174
],1109
],[
"03-Feb-11",2084
],6526
],[
"04-Feb-11",1503
],1007
],[
"05-Feb-11",4928
]
]
架构:
[1]:https://i.stack.imgur.com/QwDwv.png解决方法
您可以使用下面的代码来呈现多系列图表
import { recoilPersist } from 'recoil-persist'
const { persistAtom } = recoilPersist()
const counterState = atom({
key: 'count',default: 0,effects_UNSTABLE: [persistAtom],})