Kendo UI chart not resizing?

后端 未结 6 1777
温柔的废话
温柔的废话 2021-01-17 23:55

\"enter

I have a Kendo ui chart which displays a column chart from a dynamic data sour

6条回答
  •  野的像风
    2021-01-18 00:19

    Try this

    var chart=$("#chart").data("kendoChart");
    //to check the chart exist or not if exist then redraw it..
    if(chart)
    {
    chart.redraw();
    }
    

    Thanks

提交回复
热议问题