17

我的页面上有 2 个并排图表,并且希望在调整窗口大小时调整它们的大小:它们的容器设置为 50% 宽度,根据示例,这应该足够了。

可以找到自动调整图表大小的工作示例@ http://jsfiddle.net/2gtpA/

可以看到我为重现该问题所做的非工作示例@ http://jsfiddle.net/4rrZw/2/

注意:您必须多次调整框架的大小才能重现问题(更小>更大>更小应该这样做)

我认为这一切都在于您声明容器的方式...将 HTML 代码粘贴为 highcharts 的 JS 代码在这里似乎无关紧要...(在两个示例中都相同)

<table style="width:100%;">
  <tr>
    <td style="width:50%;">
        <div id="container" style="height: 50%"></div>
    </td>
    <td style="width:50%;"></td>
  </tr>
</table>
4

3 回答 3

22

您可以避免使用 javascript 来执行调整大小并改用 css。这可以通过将 HighChart 呈现为具有以下内容的 div 来完成:

position: absolute;
width: 100%;

为了确保容器的高度合适,您必须将此绝对定位的元素包装在另一个已明确设置高度的元素中:

position: relative;
width: 100%;
height: 400px;

通过将 HighChart 呈现为绝对位置元素,图表将响应父级中的宽度减小。

于 2013-10-14T18:47:44.903 回答
18

我把你的小提琴分叉到一个工作解决方案@ http://jsfiddle.net/AxyNp/ 那里最重要的代码片段是这样的:

$(window).resize(function() {
    height = chart.height
    width = $("#chartRow").width() / 2
    chart.setSize(width, height, doAnimation = true);
});

该解决方案与SO 帖子的答案有关。

正确调整图表容器(和单元格)大小的最佳方法似乎是依靠您自己的调整大小触发器。请注意,我在图表的选项中将回流设置为“false”以删除现有触发器。

于 2013-08-26T14:25:30.230 回答
3
/**
 * Adjust size for hidden charts
 * @param chart highcharts
 */
function adjustGraph(chart) {
    try {
        if (typeof (chart === 'undefined' || chart === null) && this instanceof jQuery) { // if no obj chart and the context is set
            this.find('.chart-container:visible').each(function () { // for only visible charts container in the curent context
                $container = $(this); // context container
                $container.find('div[id^="chart-"]').each(function () { // for only chart
                    $chart = $(this).highcharts(); // cast from JQuery to highcharts obj
                    $chart.setSize($container.width(), $chart.chartHeight, doAnimation = true); // adjust chart size with animation transition
                });
            });
        } else {
            chart.setSize($('.chart-container:visible').width(), chart.chartHeight, doAnimation = true); // if chart is set, adjust
        }
    } catch (err) {
        // do nothing
    }
}

用法

$(window).resize(function () {
    if (this.resizeTO) clearTimeout(this.resizeTO);
    this.resizeTO = setTimeout(function () {
        // resizeEnd call function with pass context body
        adjustGraph.call($('body'));
    }, 500);
});

对于引导选项卡

$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
    isChart = $(this).attr('data-chart');
    var target = $(this).attr('href');
    if (isChart) {
        // call functio inside context target
        adjustGraph.call($(target));
    }
});


<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
    <li class="active">
         <a href="#anagrafica" data-toggle="tab"><h5>Anagrafica</h5></a>
    </li>
    <li><a href="#consumi" data-toggle="tab" data-chart="1"><h5>Consumi</h5></a></li>
</ul>

在图表上

    new Highcharts.Chart({
            chart: {
                renderTo: 'chart-bar',
                defaultSeriesType: 'column',
                zoomType: 'xy',
                backgroundColor: null,
                events: {
                    load: function (event) {
                        adjustGraph(this);
                    }
                }
            },

html代码

<div class="tab-pane" id="charts">
    <div class="row-fluid">
        <div class="span6 offset3">
            <div id="myCarousel" class="carousel slide">
                <!-- Carousel items -->
                <div class="carousel-inner chart-container">
                    <div class="active item">
                        <h3>Chart 1/h3>
                        <div id="bar-pod-annuale">
                           <div id="chart-bar" style="width:100%;margin: 0 auto"></div>
                        </div>
                    </div>
                    <div class="item">
                        <h3>Char 2</h3>
                        /** chart **/
                    </div>
                    <div class="item">
                        <h3>Char 3</h3>
                        /** chart **/
                    </div>
                </div>
                <!-- Carousel nav -->
                <a class="carousel-control left" href="#myCarousel" data-slide="prev">‹&lt;/a>
                <a class="carousel-control right" href="#myCarousel" data-slide="next">›&lt;/a>
            </div>
        </div>
    </div>
</div> 

请参阅 jsfiddle 上的示例

http://jsfiddle.net/davide_vallicella/LuxFd/2/

于 2014-08-02T12:03:04.033 回答