报错如下
dodge is not support linear attribute, please use category attribute!
解决方法,
const scale = {
label:{
type:'timeCat'
},
};
因为我的数据是
data=[
{ label:"2019-03-01", y1:123,y2:234,y3:234},
{ label:"2019-03-02", y1:123,y2:234,y3:234},
]
这个横坐标 对应的字段我这边是label,所以scale里写label,数据里面对应的横坐标也是label
把这个scale 放在最外层<Chart scale ={scale }/>上
网友评论