BizCharts 报错

2019-12-25  本文已影响0人  Asuler

报错如下
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 }/>上

上一篇 下一篇

猜你喜欢

热点阅读