Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angularjs/22.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Angularjs Highchart溢出模式窗口_Angularjs_Highcharts_Angular Ui Bootstrap - Fatal编程技术网

Angularjs Highchart溢出模式窗口

Angularjs Highchart溢出模式窗口,angularjs,highcharts,angular-ui-bootstrap,Angularjs,Highcharts,Angular Ui Bootstrap,我有一个角度UI模式窗口中的Highcharts图表。模态窗口在类中声明了height和width,并且图表应该拉伸到width/height,但是它在底部溢出(可能是因为它在顶部有两个div和文本)。如何使它合身 注意:图表必须位于文本div下方,而不是背景 HTML: 也就是说,存在子div元素和设置height:100%导致父容器溢出。解决此问题的一个选项是使用,中列出了其他选项 使用 为父容器启用Flexbox布局(模式对话框) 然后通过flex grow将图表容器设置为占用剩余空间,在

我有一个角度UI模式窗口中的Highcharts图表。模态窗口在类中声明了height和width,并且图表应该拉伸到width/height,但是它在底部溢出(可能是因为它在顶部有两个div和文本)。如何使它合身

注意:图表必须位于文本div下方,而不是背景

HTML:


也就是说,存在子div元素和设置
height:100%导致父容器溢出。解决此问题的一个选项是使用,中列出了其他选项

使用

为父容器启用Flexbox布局(模式对话框)

然后通过
flex grow
将图表容器设置为占用剩余空间,在您的情况下,替换:

<div id="container" style="min-width: 300px; width:100%; height:100%;"></div>



已更新

图表位于底部边框的顶部,图表是否可以位于div内?另外,为什么要添加
reflow()
函数?当然,有关更多详细信息(边距和间距选项),请参见@ps0604,这里可以省略reflow函数,我只是忘了删除它
var app = angular.module("app", ['ui.bootstrap']);
app.controller("ctl", function($scope,$uibModal,$timeout) {

      var modalInstance;
      $scope.open = function () {
        modalInstance = $uibModal.open({
              animation: false,
              windowClass: 'the-modal',
              templateUrl: 'myModalContent.html'
            });

            $timeout(function(){
                plotChart();
            });

        };

        var plotChart = function(){

              $('#container').highcharts({
            title: {
                text: 'Monthly Average Temperature',
                x: -20 //center
            },
            subtitle: {
                text: 'Source: WorldClimate.com',
                x: -20
            },
            xAxis: {
                categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
                    'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
            },
            yAxis: {
                title: {
                    text: 'Temperature (°C)'
                },
                plotLines: [{
                    value: 0,
                    width: 1,
                    color: '#808080'
                }]
            },
            tooltip: {
                valueSuffix: '°C'
            },
            legend: {
                layout: 'vertical',
                align: 'right',
                verticalAlign: 'middle',
                borderWidth: 0
            },
            series: [{
                name: 'Tokyo',
                data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
            }, {
                name: 'New York',
                data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
            }, {
                name: 'Berlin',
                data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
            }, {
                name: 'London',
                data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
            }]
        });

        };

    });
.the-modal .modal-content{ display: flex; flex-direction: column; }
<div id="container" style="min-width: 300px; width:100%; height:100%;"></div>
<div id="container" style="min-width: 300px; width:100%; flex-grow: 1;"></div>