简体   繁体   中英

Axis on google bubble chart

I am using the googlechart bubble-chart, but I am finding it hard to set the right size on y-axis. Both axis go from 0 to 100%, but most of my bubbles are 90 to 100% on y-axis.Tried to use ticks, but not showing a good visualization. Anyone have a idé how I could do this better ?

在此处输入图片说明

try option vAxis.viewWindow.min & max

var options = {
  vAxis:{
    viewWindow: {
      min: 75,
      max: 125
    }
  }
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM