で負の値を示す避けてください:私は、次のチャートを与えGoogleのチャート - 私は、次のコードを持っているY軸
function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['Year', 'People'],
['2010',0]
]);
// Create and draw the visualization.
new google.visualization.ColumnChart(document.getElementById('visualization')).
draw(data,
{title:"Yearly Coffee Consumption by Country",
width:600, height:400,
hAxis: {title: "Year"},
backgroundColor: 'none'
}
);
}
はどのようにしてY軸の負の値を示す避けるために行うことができますか?私は vAxis: {minValue:0}
を運がなくて追加しようとしました。 Google Charts Playground
これはoあなたの手は私の問題を解決するようです。ありがとうございました! – slarti42uk
これは正解です –
'viewWindowMode:"明示的な "は現在廃止されているのでもう必要ありません。 https://developers.google.com/chart/interactive/docs/gallery/linechart#configuration-options – etoxin