ZingChart的Scale-Y刻度为散点图绘制错误



Zing chart的散点图没有正确设置y轴。下面的代码用于渲染散点图。

   zingchart.render({
            id:'itemMapChart',
            data:{
                type: 'scatter',
                series: srsdata,
                "background-color": "none",
                scaleX:{
                    guide: {
                        "line-color": "none"
                    },
                },
                scaleY:{
                    guide: {
                        "line-color": "none"
                    },
                },
                plotarea:{
                    margin: "dynamic",
                    padding : "48px",
                },
                plot : {
                  marker : {
                    size : 15
                  }
                },
            },
            height:800,
            width: "100%" 
        });

srsdata是如下结构的数组:

var srstemp = {
  values: [
   [val.dishqty, val.dishprice]
  ],
  "text": val.dishname
};

x值为整数,y值为浮点数。我尝试使y值为int,然后规模工作正常。但是,当它保持为浮动时,图形看起来像这样:https://postimg.org/image/ge4nfej3n/

谁能告诉我这有什么问题?

听起来您的值是字符串,而不是数字类型。我将parseFloat你的值,所以小数值被保留。

相关内容

  • 没有找到相关文章

最新更新