でレンダリングしたいヒストグラムがありますColumnCharts
。チュートリアルに従って実行した結果、次のようになりました。
グラフの両端の間隔に注意してください (特に、左側には非常に小さい列がいくつかあります)。
使ってみましviewWindow
たが特に効果はないようです。描画に使用されるコード (coffeescript) は次のとおりです。データはかなり大きいため、スペースを節約するために切り取られています
data = google.visualization.arrayToDataTable([
labels, bardata
])
# The labels are ["x", "label for each column" ....]
# bardata is [number, number, number] (these numbers are the height of the column)
chart = new google.visualization.ColumnChart(document.getElementById("enrollment-total-chart"))
chart.draw(data,
width: 400
height: 300
hAxis:
title: "Number of students"
vAxis:
title: "Number of schools"
viewWindow:
max: "auto"
min: 0
viewWindowMode: "explicit"
legend: position: "none"
)