1
複数のグラフが1ページに表示され、一部のユーザーは画面が大きく、一部のユーザーは標準画面が小さく表示されます。Googleチャットサイズの問題
任意のサイズのモニター画面にフィットできるように、幅を柔軟にする方法はありますか?
幅を100%に設定しようとしましたが、機能しません。
<table width="100%">
<tr>
<td>
<div id="chart_GP" class="chart_div">
<div class="chart_preloader"> </div>
</div>
</td>
<td id="td_profit">
<div id="chart_Profit" class="chart_div">
<div class="chart_preloader"> </div>
</div>
</td>
<td>
<div id="chart_Visits" class="chart_div">
<div class="chart_preloader"> </div>
</div>
</td>
</tr>
</table>
CSS
.chart_preloader {
height:250px;
width: 100%;
background:url('/images/pie.gif') center center no-repeat;
background-color : #EEF;
}
.chart_div {
border-color: #006699;
border-style: solid;
border-width: 1px;
}
、Googleのチャートオプション
var options = {
title: "Last 12 Months Gross Profit per Month",
animation: {
duration: 1500,
startup: true //This is the new option
},
pointSize: 5,
curveType: 'function',
backgroundColor: chart_background_Color,
colors: [chartLine_Color],
legend: 'none',
width: 385,
height: 250,
tooltip: { isHtml: true },
hAxis: {
slantedText: true,
slantedTextAngle: 90
},
vAxis: {
title: 'Profit',
titleTextStyle: { italic: false, fontName: 'Calibri', fontSize: '12', bold: 'false' }
//format: '#\'%\''
}
};
私は私の質問で述べたように、幅100%は動作しません。スニペットに複数のグラフを用意してください。 – user1263981
私はあなたが私の質問を誤解していると思います。私は応答側を見ていません。 – user1263981
がそれを見逃しましたが、はい、可能です - 上記の答えを変更しました – WhiteHat