2
chart.draw(data,{
colors:[self.model.get("color"), '#FF0000'],
height: 600,
title: self.model.get("title"),
chartArea: { width:'80%',height:'80%'},
legend: {position: 'bottom'},
animation:{
startup: true,
duration: 500,
easing: 'inAndOut',
},
vAxis:{
0:{
title:self.model.get("x_axis_label")
},
1:{
title:"Temperature"
}
},
hAxis:{
title:self.model.get("x_axis_label"),
slantedText: false,
slantedTextAngle: 0
},
series:
{
0: {
type:'bars',
targetAxisIndex:0
},
1: {
type:'line',
targetAxisIndex:1
}
}
});
私は2つの垂直軸(温度とKWh)を持っています。縦軸のタイトルがチャートに表示されていないことを除いて、すべてのものが機能します。私はオプションの中でvAxisを定義し、系列の中でtargetAxisIndexを定義しました。私はgoogleを検索し、vAxisは2つの垂直軸に対して0:{}と1:{}を持つはずです。GoogleグラフのcomboChartのセカンダリ軸のタイトルは機能しません
この質問を持つ任意の運? – WhiteHat