我很享受伟大的Material chart lib from Google。我想知道在使用两个独立的x轴时是否有办法在其中一个系列上设置最大值?
var options7 = {
bars: 'horizontal',
series: {
0: {axis: 'percent', maxValue: 100}, // Bind series 0 to an axis named 'percent'.
1: {axis: 'total'} // Bind series 1 to an axis named 'total'.
},
axes: {
x: {
percent: {label: 'Percent Answered', maxValue: 100}, // Bottom x-axis.
total: {side: 'top', label: 'Total Questions'} // Top x-axis.
}
},
hAxis: {title: 'Questions Answered for the Division', maxValue: 100}
};
data7.sort({column: 2});
chart7 = new google.charts.Bar(document.getElementById("deptQuestionsAnswered"));
chart7.draw(data7, options7);
我已经在所有我认为可能一次帮助的地方添加了maxValue字段,以及组合(如上面的代码),但是我找不到任何关于如何为多个这样做的文档 - 系列。
有什么想法吗?