美文网首页
BizCharts 报错

BizCharts 报错

作者: Asuler | 来源:发表于2019-12-25 18:17 被阅读0次

报错如下
dodge is not support linear attribute, please use category attribute!

image.png

解决方法,

 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 }/>上

相关文章

网友评论

      本文标题:BizCharts 报错

      本文链接:https://www.haomeiwen.com/subject/rithoctx.html