1
Googleゲージチャートをセンターアライメントに苦労しています。センターアライメントGoogleゲージチャート
私はセンタリングされたゲージチャーと中央の折れ線グラフを持つ1つの行を持っていると思います。
私は様々なオプションを試して、 "display:inline-block"を使っていますが、動作しません。 折れ線グラフの行は、期待どおりに動作します。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['gauge', 'corechart']});
google.charts.setOnLoadCallback(drawCharts);
function drawCharts() {
drawChart();
drawGauges();
}
function drawGauges() {
var data = google.visualization.arrayToDataTable([
['Label', 'Value'],
['Memory', 80],
['CPU', 55],
]);
var w = $(window).width();
var x = Math.floor(w * 0.3);
console.log("width: " + w + ", x = " + x);
var h = $(window).height();
var y = Math.floor(h * 0.3)
console.log("height: " + h + ", y = " + y);
var options = {
redFrom: 90, redTo: 100,
yellowFrom:75, yellowTo: 90,
minorTicks: 5,
width: x,
height: y,
};
var chart = new google.visualization.Gauge(document.getElementById('chart_div'));
chart.draw(data, options);
}
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Year', 'Sales', 'Expenses'],
['2004', 1000, 400],
['2005', 1170, 460],
['2006', 660, 1120],
['2007', 1030, 540]
]);
var options = {
title: 'Company Performance',
curveType: 'function',
legend: { position: 'bottom' }
};
var chart = new google.visualization.LineChart(document.getElementById('curve_chart'));
chart.draw(data, options);
}
$(window).resize(function(){
drawCharts();
});
</script>
<style>
.container {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.row {
height:30%;
width: 100%;
}
#chart_div {
display: inline-block
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div id="chart_div"></div>
</div>
<div class="row">
<div id="curve_chart" ></div>
</div>
</div>
</body>
</html>
を
text-align: center;
.container
にを追加しますか? –