多くのリアルタイムグラフとゲージを表示するWebサイトがあります。グラフはplotly.jsライブラリで作成されます。ゲージはJustGageで行われます。コンテナのコードのようなある:拡張時にブートストラップ隠し要素がコンテナを越えて広がる
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-5 statistics">
<div class="centered-text">
<div class="container-fluid">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-heading">Statistics Panel</h3>
</div>
<ul class="list-group">
<!-- Base Station Panel -->
<li class="list-group-item">
<div class="row toggle" id="dropdown-detail-1" data-toggle="detail-1">
<div class="col-lg-10 text-left">
Base Station
</div>
<div class="col-lg-2"><i class="fa fa-chevron-down pull-right"></i></div>
</div>
<div id="detail-1">
<hr></hr>
<div class="container-fluid">
<div class="fluid-row">
<div class="col-lg-6">
<div id="happygraph1"></div>
<input id="happybutton1" type="button" value="View History"
onclick="happygraph1.changeMode();"/>
</div>
<div class="col-lg-6">
<div id="happygraph2"></div>
<input id="happybutton2" type="button" value="View History"
onclick="happygraph2.changeMode();"/>
</div>
</div>
<div class="fluid-row">
<div class="col-lg-6">
<div id="happygraph3"></div>
<input id="happybutton3" type="button"
value="View History" onclick="happygraph3.changeMode();"/>
</div>
</div>
<div class="container-fluid">
<div class="fluid-row">
<div class="col-sm-6">
<div id="happygauge1 style="height: 250px; width: 300px;"></div>
</div>
</div>
<div class="col-sm-6">
<div id="happygauge2" style="height: 250px; width: 300px;"></div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
問題は、データが隠し要素が展開される前に、グラフのコンテナが延出し、グラフに現れ始めた場合、ページのロード時、ということです新しく展開された要素のしかし、要素が最初に展開され、次にデータが入ってくると、それは正確にどのように動作するのですか。ゲージに問題はありません。 graph containers expand out of element
引き出し(と一般的にレイアウトを:ここでgraph containers stay within element
データが描画されて開始された後の要素が展開されたときのスクリーンショットです:ここで
は、それが働いているときのスクリーンショットです)はブートストラップによって完了されます。何が容器を壊す原因になっていますか?私は流体の行とコンテナのプロパティを再生しようとしましたが、無駄です。前もって感謝します。