我有一个网站,其中显示许多实时图形和仪表,最初都隐藏在抽屉中。这些图是使用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 stay within element

这是开始绘制数据后何时展开元素的屏幕截图:graph containers expand out of element

抽屉(通常是布局)由引导程序完成。是什么导致容器破裂?我试过使用流体行和容器属性,但是无济于事。提前致谢。

最佳答案

看来问题根本不在Bootstrap,而是在Plotly中设置了一些布局选项。仅在隐藏加载时,Plotly才将图形调整为比容器大得多。

10-05 20:57
查看更多