当其中一个轴变得奇怪并开始重复数字(即:1、1、2、2 而不是 1、2、3、4)时,我正在使用 Google 可视化的组合(列/折线)图表进行错误修复。请看下面的图片
(来源:rackcdn.com)
以下是图表选项设置:
// Instantiate and draw our chart, passing in some options.
var frequency_by_day_options = {
vAxes: [
{format:'#,###', title:"Call Volume"},
{format: '#%', title:'Missed Call Rate',
viewWindow:{
max:1,
}}
],
legend: {position: 'none'},
chartArea: { height:'60%', width:'60%'},
width: 800,
height: 350,
backgroundColor: 'transparent',
bar: { groupWidth: '90%'},
isStacked: true,
seriesType: 'bars',
series: {0: {type:'bar', targetAxisIndex:0}, 1: {type:'line', targetAxisIndex:1},},
colors: ['blue', 'green'],
animation:{
duration: 1000,
easing: 'out',},
};
我不知道这里发生了什么。即使我注释掉所有的 vAxis 选项,我仍然会观察到这种行为。关于我做错了什么的任何想法?这让我发疯:)