軸の 1 つがおかしくなり、数字を繰り返し始めたとき (つまり、1、2、3、4 ではなく 1、1、2、2)、コンボ (縦棒グラフ/折れ線グラフ) グラフの 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 オプションをコメントアウトしても、この動作は引き続き観察されます。私が間違っていることについてのアイデアはありますか?これは私を夢中にさせています:)