如何制作google以正值divided/modified为象限的散点图?

How to make google scatter chart with positive values divided/modified as Quadrants?

如果有正值和负值,则它通过除以零来形成象限。你可以在这个plunker example.

看到

但是只有正值的情况下如何做象限呢?看到这个 positive values plunker

chart2.options = {
"title": "Age Vs Weight",
"hAxis": {
  "title": "Age",
  minValue: 0,
  maxValue: 3,
  ticks: [0, 1.0, 2.0, 3.0],
  viewWindow: {
    min: 0,
    max: 3.0
  }
},
"vAxis": {
  "title": "Weight",
  minValue: 0,
  maxValue: 3,
  ticks: [0, 1.0, 2.0, 3.0],
  viewWindow: {
    min: 0,
    max: 3.0
  }
},
"legend": 'none'
};

它应该通过计算正值的中位数来显示象限。象限图对于分析太好或太坏的二维很有用。

是否可以在中间划分轴,应该是深色而其他刻度应该是微弱的?

没有创建象限的自动选项。 hAxis 和 vAxis 有一个 属性 baseline ,我们可以通过它来制作轴基线位置。

vAxis.baseline : <point>
hAxis.baseline : <point>

查看建议的选项。

chart2.options = {
"title": "Age Vs Weight",
"hAxis": {
  "title": "Age",
  minValue: 0,
  maxValue: 3,
  baseline: 1.5,
  ticks: [0, 1.0, 2.0, 3.0],
  viewWindow: {
    min: 0,
    max: 3.0
  }
},
"vAxis": {
  "title": "Weight",
  minValue: 0,
  maxValue: 3,
  baseline: 1.5,
  ticks: [0, 1.0, 2.0, 3.0],
  viewWindow: {
    min: 0,
    max: 3.0
  }
},
"legend": 'none'
};