高图重绘方法不刷新图表 [英] highchart chart redraw method is not refreshing the chart

查看:93
本文介绍了高图重绘方法不刷新图表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很想知道为什么按钮2在此示例中不起作用

I am curious to know why button 2 is not working in this example

在这个jsfiddle示例中,附加到按钮1的'update'方法正在工作,但在我的原始代码'update'中也不起作用。它显示错误:object#has no method'update'

In this jsfiddle example 'update' method attached to button 1 is working, but in my original code 'update' is also not working. It shows error: "object# has no method 'update'"

$(function () {
    var options= {
        chart: {
            renderTo: 'container',
            height: 400
        },
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        
        series: [{
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]        
        }]
    };
   
    var chart = new Highcharts.Chart(options);
    buttonhandle1();
    buttonhandle2()
});

function buttonhandle1(){
    $("#b1").click(function(){
            var chart = $('#container').highcharts();
            chart.yAxis[0].update({
                min:0,
            max: 5,
            tickInterval : 1,
        });
    });
}

function buttonhandle2(){
    var chart = $('#container').highcharts();
    $("#b2").click(function(){
        chart.yAxis[0].min= 0;
        chart.yAxis[0].max= 5;
        chart.yAxis[0].tickInterval = 1;
        chart.redraw();
    });
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
<button id="b1"> button 1</button>
<button id="b2"> button 2</button>


推荐答案

因为当您使用 chart.redraw()时,您还应该将 isDirty 标志设为true

Because when you use chart.redraw() you should also set isDirty flag as true

http://jsfiddle.net/uKWQ9/3/

chart.yAxis[0].isDirty = true;

这篇关于高图重绘方法不刷新图表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆